-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 887 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 887 Bytes
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
{
"name": "hexlife-explorer",
"private": true,
"version": "1.0.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",
"preview": "vite preview",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix"
},
"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",
"globals": "^16.2.0",
"prettier": "^3.6.2",
"vite": "^6.3.5",
"wasm-pack": "^0.0.0"
}
}