-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1007 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1007 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
28
29
30
31
32
33
34
35
{
"name": "othello-web-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "npm run wasm-dev && vite",
"dev:host": "npm run wasm-dev && vite --host",
"build": "npm run wasm-release && tsc && vite build",
"preview": "vite preview",
"preview:host": "vite preview --host",
"lint": "eslint .",
"format": "prettier -w .",
"prettier": "prettier -c .",
"wasm-dev": "wasm-pack build ./rust-othello --target web --dev --debug",
"wasm-release": "wasm-pack build ./rust-othello --target web --release"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/html-minifier-terser": "^7.0.2",
"@types/node": "^25.3.3",
"eslint": "^10.0.2",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vite-plugin-html": "^3.2.2",
"vite-plugin-pwa": "^1.2.0"
},
"dependencies": {
"@mdi/js": "^7.4.47",
"comlink": "^4.4.2",
"idb": "^8.0.3"
}
}