-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.3 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.3 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
59
60
61
{
"name": "ltd-save-editor",
"private": true,
"version": "2.5.1",
"type": "module",
"license": "AGPL-3.0-or-later",
"scripts": {
"dev": "vite dev",
"prebuild": "npm run wasm:build",
"build": "vite build",
"preview": "vite preview",
"precheck": "npm run i18n:types",
"precommit": "npm run format && npm run lint && npm run check && npm run knip && npm run test && npm run build",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json && tsc -p tsconfig.test.json",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . && prettier --check .",
"format": "prettier --write .",
"i18n:check": "node tools/i18n-sync.ts check",
"i18n:sync": "node tools/i18n-sync.ts sync",
"i18n:types": "node tools/generate-i18n-types.ts",
"knip": "knip",
"data:generate": "node scripts/generate-all.ts && npm run format",
"assets:upload": "node scripts/upload-assets.ts",
"deploy": "npm run build && wrangler pages deploy dist --project-name=ltd-save-editor --branch=main",
"deploy:beta": "npm run build -- --mode beta && wrangler pages deploy dist --project-name=ltd-save-editor --branch=beta",
"wasm:build": "asc src/lib/ugc/wasm/assembly/index.ts --config src/lib/ugc/wasm/asconfig.json --target release",
"wasm:build:debug": "asc src/lib/ugc/wasm/assembly/index.ts --config src/lib/ugc/wasm/asconfig.json --target debug"
},
"devDependencies": {
"@assemblyscript/loader": "^0.28.17",
"@eslint/js": "^10.0.1",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.59.1",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tailwindcss/vite": "^4.3.0",
"@types/node": "^24.12.3",
"assemblyscript": "^0.28.17",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.17.1",
"globals": "^17.6.0",
"knip": "^6.12.2",
"prettier": "^3.8.3",
"prettier-plugin-svelte": "^3.5.1",
"svelte": "^5.55.5",
"svelte-check": "^4.4.8",
"tailwindcss": "^4.3.0",
"typescript": "~6.0.3",
"typescript-eslint": "^8.59.2",
"vite": "^8.0.11",
"vitest": "^4.1.5",
"wrangler": "^4.90.0",
"yaml": "^2.8.4"
},
"dependencies": {
"@bokuweb/zstd-wasm": "^0.0.27",
"fflate": "^0.8.2",
"svelte-i18n": "^4.0.1"
}
}