-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.83 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
{
"packageManager": "bun@1.3.14",
"scripts": {
"test": "bun run typecheck && bun test && bun run validate:javascript && bun run validate:icons",
"build": "bun tools/deploy.ts",
"build:pinball-runtime": "bun tools/build-pinball-runtime.ts",
"dev": "bun tools/dev-server.ts",
"preview": "bun tools/dev-server.ts --production",
"deploy:worker": "wrangler deploy --config worker/wrangler.toml",
"extract:xp-assets": "bun tools/extract-xp-assets.ts",
"extract:pinball-assets": "bun tools/extract-pinball-assets.ts",
"compare:xp-ui": "bun tools/compare-xp-ui.ts",
"extract:swf": "bun tools/extract-swf.ts",
"find:icons": "bun tools/find-flashpoint-icons.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"quality": "bun run format:check && bun run lint",
"sync:icons": "bun tools/sync-game-icons.ts",
"typecheck": "tsc --noEmit",
"validate:icons": "bun tools/validate-icons.ts --require-all",
"validate:javascript": "bun tools/validate-javascript.ts",
"verify:xp-assets": "bun tools/extract-xp-assets.ts --check",
"verify:pinball-assets": "bun tools/extract-pinball-assets.ts --check",
"xp:vm": "bun tools/xp-vm.ts"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/bun": "^1.3.14",
"@typescript/native": "npm:typescript@7.0.2",
"eslint": "10.8.0",
"eslint-config-prettier": "10.1.8",
"globals": "17.8.0",
"happy-dom": "20.11.1",
"prettier": "3.9.6",
"typescript": "6.0.2",
"typescript-eslint": "8.65.0",
"workbox-build": "^7.4.1",
"wrangler": "4.114.0"
},
"dependencies": {
"@nktkas/bmp": "^4.0.0",
"@ruffle-rs/ruffle": "^0.5.0",
"fflate": "^0.8.3",
"js-dos": "^8.4.1",
"sharp": "^0.35.3",
"webtorrent": "^3.0.21"
}
}