-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 774 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "gitfolio",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Universal, self-hostable GitHub stats card generator — one compact, animated, fully customizable SVG card.",
"scripts": {
"build": "esbuild src/client/builder.ts --bundle --minify --format=iife --outfile=public/builder.js",
"dev": "npm run build && tsx scripts/serve.ts",
"preview": "tsx scripts/preview.ts",
"typecheck": "tsc --noEmit"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"d3-shape": "^3.2.0",
"simple-icons": "^15.19.0"
},
"devDependencies": {
"@types/d3-shape": "^3.1.7",
"@types/node": "^22.10.2",
"esbuild": "^0.25.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}