-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.51 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
{
"name": "hexlife-explorer",
"private": true,
"version": "1.2.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": "npm run build:wasm && vite build",
"build:embed": "vite build --config vite.embed.config.js && node scripts/prepare-embed-package.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"
},
"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"
}
}