-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.52 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 3.52 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "bottleship",
"private": true,
"type": "module",
"workspaces": ["packages/*"],
"scripts": {
"prebuild": "bun run generate-reference-argcounts && bun run generate-indexes",
"predev": "bun run clean:vite && bun run generate-reference-argcounts && bun run generate-indexes",
"dev": "bunx --bun vite",
"dev:ssl": "VITE_SSL=1 bun run dev",
"dev:logs": "bun run tools/log-server/log-server.ts",
"dev:all": "concurrently -n \"logs,vite\" -c \"cyan,magenta\" \"bun run dev:logs\" \"bun run dev\"",
"build": "bunx --bun vite build",
"preview": "bunx --bun vite preview",
"typecheck": "bun node_modules/tsgo/bin/tsc -p tsconfig.json --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"parse-metadata": "bun tools/parse-metadata.ts",
"generate-indexes": "bun tools/generate-index.ts",
"clean:vite": "bun -e \"try { require('fs').rmSync('node_modules/.vite', {recursive: true, force: true}); console.log('Vite cache cleared'); } catch(e) { if(e.code !== 'ENOENT') throw e; }\"",
"import-metadata": "bun tools/import-metadata.ts",
"validate-signatures": "bun tools/validate-signatures.ts",
"generate-reference-argcounts": "bun tools/generate-reference-argcounts.ts",
"seh:ghidra": "bun tools/internal/seh-ghidra-headless.ts",
"check-file-sizes": "bun tools/check-file-sizes.ts",
"fetch-reference-headers": "bun tools/fetch-reference-headers.ts",
"parse-reference-headers": "bun tools/parse-reference-headers.ts",
"logs": "bun tools/log-manager.ts",
"logs:clean": "bun tools/log-manager.ts cleanup",
"logs:emergency": "bun tools/log-manager.ts emergency",
"logs:stats": "bun tools/log-manager.ts stats",
"analyze-trace": "bun tools/analyze-trace.ts",
"test:fpu-relaxed": "node vendor/v86/tests/fpu-relaxed-diff.mjs",
"build:v86": "cd vendor/v86 && bash build-wasm.sh && cp build/v86.wasm ../../public/v86.wasm && echo 'v86.wasm copied to public/'",
"build:video-decoder": "bash tools/build-ffmpeg-decoder/build.sh",
"build:unpack-streaming": "powershell -ExecutionPolicy Bypass -File tools/build-unpack-streaming/build.ps1",
"build:unpack-buffered": "bash tools/build-unpack-buffered/build-wasm.sh",
"test:unpack-buffered-7z": "bun tools/tests/unpack-buffered-7z.smoke.ts",
"gen:inno-fixtures": "cargo run --bin gen-fixtures --manifest-path tools/build-unpack-streaming/Cargo.toml"
},
"dependencies": {
"@bottleship/formats": "workspace:*",
"@bottleship/repack": "workspace:*",
"@phosphor-icons/react": "^2.1.10",
"lucide-react": "^1.24.0",
"pako": "^3.0.1",
"react": "19.2.7",
"react-dom": "19.2.7",
"v86": "file:vendor/v86"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/postcss": "^4.3.2",
"@types/bun": "^1.3.14",
"@types/node": "^26.1.1",
"@types/pako": "^2.0.4",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"@typescript-eslint/parser": "^8.63.0",
"@vitejs/plugin-basic-ssl": "^2.3.0",
"@vitejs/plugin-react": "6.0.3",
"@webgpu/types": "^0.1.71",
"autoprefixer": "^10.5.2",
"concurrently": "^10.0.3",
"esbuild": "^0.28.1",
"eslint": "^10.6.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"jszip": "^3.10.1",
"pngjs": "^7.0.0",
"postcss": "^8.5.16",
"tailwindcss": "^4.3.2",
"tsgo": "npm:typescript@7.0.2",
"tsx": "^4.23.0",
"typescript": "6.0.3",
"typescript-eslint": "^8.63.0",
"vite": "8.1.4"
}
}