-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.17 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
{
"name": "agar-protocol",
"private": true,
"version": "0.0.0",
"type": "module",
"description": "A clinical WebGPU laboratory for cultivating, isolating, and archiving digital lineages.",
"scripts": {
"dev": "vite",
"build": "npm run sync:configs:check && tsc --noEmit && vite build",
"build:replica": "npm run build && npm run normalize:dist",
"normalize:dist": "node tools/normalizeDistText.mjs",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "node --test \"tools/**/*.test.ts\" \"src/**/*.test.ts\"",
"verify:live": "node tools/verifyLiveParity.mjs",
"qr:survival": "node tools/qrSurvival.mjs",
"sync:configs": "node tools/syncConfigs.ts",
"sync:configs:check": "node tools/syncConfigs.ts --check"
},
"devDependencies": {
"@tweakpane/core": "^2.0.5",
"@types/node": "^26.1.2",
"@webgpu/types": "^0.1.60",
"jpeg-js": "^0.4.4",
"typescript": "^5.7.2",
"vite": "^6.0.7"
},
"allowScripts": {
"esbuild@0.25.12": true
},
"dependencies": {
"jsqr": "^1.4.0",
"lz-string": "^1.5.0",
"mediabunny": "^1.55.1",
"qrcode-generator": "^2.0.4",
"tweakpane": "^4.0.5"
}
}