-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 779 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 779 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
29
{
"name": "digdigdig",
"version": "0.1.0",
"description": "Game made for Ludum Dare 57",
"scripts": {
"postinstall": "npm run patch",
"build": "node esbuild.mjs",
"patch": "npm run tool -- patch-dependencies",
"serve": "node esbuild.mjs serve",
"test": "tsx test/run.ts",
"test:watch": "npm run tool -- run-tests-in-watch-mode",
"tool": "tsx tools/run-tool.ts"
},
"author": "Hubol",
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"@hubol/smooch": "^1.0.0-beta.18",
"@types/node": "^20.8.8",
"dprint": "^0.47.2",
"esbuild": "0.19.8",
"esbuild-plugin-import-glob": "^0.1.1",
"tsx": "^4.7.1",
"typescript": "^5.2.2"
},
"dependencies": {
"pixi.js": "^7.3.1",
"unzipit": "^1.4.3"
}
}