-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.1 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
{
"name": "watch-neuron",
"version": "0.1.0",
"private": true,
"license": "MIT",
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "vite build",
"preview": "vite preview",
"wasm:build": "node scripts/build-wasm.mjs",
"data:build": "node scripts/build-training-data.mjs",
"model:train": "node scripts/train-model.mjs",
"typecheck": "vue-tsc --noEmit",
"test:initialization": "node --experimental-strip-types scripts/verify-initialization.mjs",
"test:webgpu": "node scripts/verify-webgpu-graph.mjs",
"test": "npm run wasm:build && npm run typecheck && npm run test:initialization && npm run test:webgpu && node scripts/verify-model.mjs && node scripts/verify-default-model.mjs && npm run build && node scripts/verify-training-worker.mjs"
},
"dependencies": {
"@lucide/vue": "^1.25.0",
"vue": "^3.5.13"
},
"devDependencies": {
"@types/node": "22.19.19",
"@vitejs/plugin-vue": "^6.0.1",
"mnist": "^1.1.0",
"typescript": "5.9.3",
"vite": "8.0.13",
"vue-tsc": "^3.0.6"
},
"type": "module"
}