-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.73 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.73 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "7dtd-map",
"version": "1.0.0",
"description": "Map renderer for 7 Days to Die",
"private": true,
"scripts": {
"serve": "./tools/build.bash serve",
"build": "run-s build:**",
"build:ts": "./tools/build.bash",
"build:json:prefab-props": "tsx ./tools/generate-prefab-properties-jsons.ts",
"build:json:labels": "tsx ./tools/generate-labels-jsons.ts",
"build:json:block-counts": "tsx ./tools/generate-prefab-block-counts.ts",
"build:prefab-html": "tsx ./tools/generate-prefab-html.ts",
"fix": "run-s fix:**",
"fix:prettier": "prettier --write .",
"fix:eslint": "eslint --fix .",
"lint": "run-p lint:**",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint .",
"lint:tsc:src": "tsc -p src --noEmit",
"lint:tsc:tools": "tsc -p tools --noEmit",
"lint:tsc:lib": "tsc -p lib --noEmit",
"test": "jest --config src/jest.config.ts",
"ci": "run-p lint test"
},
"author": "Keiichiro UI",
"license": "MIT",
"type": "module",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@swc/core": "^1.15.4",
"@swc/jest": "^0.2.39",
"@tsconfig/node24": "^24.0.3",
"@tsconfig/strictest": "^2.0.8",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.4",
"@types/pngjs": "^6.0.5",
"@types/three": "^0.182.0",
"@types/xml2js": "^0.4.14",
"csv-parse": "^6.1.0",
"esbuild": "~0.27.1",
"eslint": "^9.39.2",
"glob": "^13.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"npm-run-all": "^4.1.5",
"pngjs": "^7.0.0",
"prettier": "^3.7.4",
"three": "~0.182.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.49.0",
"xml2js": "^0.6.2"
},
"engines": {
"node": "~24"
}
}