-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 828 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 828 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
{
"name": "snk",
"description": "Generates a snake game from a github user contributions grid",
"version": "3.5.0",
"private": true,
"repository": "github:platane/snk",
"devDependencies": {
"@types/bun": "1.3.4",
"@types/node": "24.12.2",
"prettier": "3.6.2",
"typescript": "5.9.3"
},
"workspaces": [
"packages/*"
],
"scripts": {
"type": "tsc",
"lint": "prettier -c '**/*.{ts,js,json,md,yml,yaml}' '!packages/*/dist/**' '!svg-only/dist/**'",
"dev:demo": "( cd packages/demo ; npm run dev )",
"build:demo": "( cd packages/demo ; npm run build )",
"build:action": "( cd packages/action ; npm run build )",
"build:lib": "( cd packages/generate-snake-animation ; npm run build )",
"publish:lib": "( cd packages/generate-snake-animation/dist ; npm publish )"
}
}