-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.34 KB
/
package.json
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
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "kingdomarchitect",
"version": "1.0.0",
"description": "Kingdom architects is intended to be a building/management game",
"type": "module",
"author": "Trym Nilsen",
"private": true,
"license": "MIT",
"homepage": "https://github.com/trymnilsen/kingdomarchitect#readme",
"scripts": {
"start": "http-server -c-1",
"build": "tsc && rollup -c",
"tilegen": "tsc && node build/tool/tilegen/tilegen.js",
"spritepack": "tsc && node build/tool/spritepack/spritePack.js && npm run build",
"test": "vitest run",
"bundle": "rollup -c",
"format": "prettier ts/ --write",
"check-format": "prettier ts/ --check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trymnilsen/kingdomarchitect.git"
},
"bugs": {
"url": "https://github.com/trymnilsen/kingdomarchitect/issues"
},
"dependencies": {
"@edugis/rollup-plugin-sourcemaps": "0.6.4",
"@types/node": "^22.10.5",
"@types/pngjs": "^6.0.5",
"http-server": "^14.1.1",
"maxrects-packer": "^2.7.3",
"pngjs": "^7.0.0",
"prettier": "^3.4.2",
"rollup": "^3.29.5",
"source-map-support": "^0.5.21",
"typescript": "^5.7.3",
"@vitest/coverage-v8": "^2.1.8",
"vitest": "^2.1.8"
}
}