-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 2.69 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
{
"name": "hexlife-explorer",
"private": true,
"version": "1.3.0",
"type": "module",
"scripts": {
"dev": "vite",
"build:wasm": "wasm-pack build ./hexlife-wasm --target web --out-dir ../src/core/wasm-engine --out-name hexlife_wasm",
"build:wasm:stochastic": "wasm-pack build ./hexlife-wasm --target web --out-dir ../src/core/stochastic-wasm --out-name hexlife_stochastic_wasm -- --no-default-features --features stochastic",
"build:wasm:solid": "wasm-pack build ./hexlife-wasm --target web --out-dir ../src/core/solid-wasm --out-name hexlife_solid_wasm -- --no-default-features --features solid",
"build:wasm:hcp": "wasm-pack build ./hexlife-wasm --target web --out-dir ../src/core/hcp-wasm --out-name hexlife_hcp_wasm -- --no-default-features --features hcp",
"build": "npm run build:wasm && vite build && npm run build:standalone",
"build:standalone": "vite build --config vite.totalistic-standalone.config.js && node scripts/inline-totalistic-standalone.mjs",
"build:embed": "npm run build:wasm:stochastic && npm run build:wasm:solid && npm run build:wasm:hcp && vite build --config vite.embed.config.js && node scripts/prepare-embed-package.mjs && node scripts/embed-package-audit.mjs",
"pack:embed": "npm run build:embed && npm pack ./dist/embed-package --pack-destination dist",
"publish:embed": "npm run build:embed && npm publish ./dist/embed-package --access public",
"preview": "vite preview",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"library:merge": "node scripts/merge-library-pack.mjs",
"audit:stochastic": "node scripts/stochastic-oracle-fixtures.mjs && node scripts/stochastic-artifact-audit.mjs",
"audit:embed": "node scripts/embed-package-audit.mjs",
"benchmark:stochastic:native": "node scripts/stochastic-native-baseline.mjs",
"benchmark:stochastic:release": "node scripts/stochastic-release-audit.mjs --write"
},
"devDependencies": {
"@eslint/js": "^9.30.0",
"eslint": "^9.30.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-vite": "^2.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-unused-imports": "^4.1.4",
"esbuild": "^0.25.5",
"globals": "^16.2.0",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"vite": "^6.3.5",
"vitest": "^4.1.8",
"wasm-pack": "^0.0.0"
},
"dependencies": {
"gifenc": "^1.0.3",
"onnxruntime-web": "^1.27.0"
}
}