-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.75 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
42
43
{
"name": "webgpu-fly",
"version": "0.1.0",
"description": "Realtime LIF simulation of the FlyWire brain + MANC spine + flybody body, all in WebGPU/WASM in the browser.",
"type": "module",
"homepage": "https://webgpu-fly.pages.dev",
"repository": {
"type": "git",
"url": "https://github.com/abgnydn/webgpu-fly.git"
},
"author": {
"name": "Ahmet Barış Günaydın",
"email": "hi@barisgunaydin.com"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"typecheck": "tsc --noEmit",
"data": "bash tools/download_data.sh",
"convert": ".venv/bin/python tools/build_csr.py",
"test:e2e": "playwright test",
"test:unit": "node --test tests-unit/*.test.ts",
"bench:brain": "playwright test tests/bench.spec.ts --reporter=list",
"build:slim": "npm run build && rm -rf dist/flybody dist/flybody.bundle.bin dist/brain.bin dist/brain.meta.json dist/vnc.bin dist/vnc.meta.json dist/walking-policy.bin dist/walking-obs-norm.bin dist/walking-ref.bin dist/walking-policy-fixtures.json",
"deploy": "npm run build:slim && npx --yes wrangler pages deploy dist --project-name=webgpu-fly --branch=main",
"deploy:hf": "npm run build:slim && cp space/README.md space/.gitattributes NOTICE LICENSE LICENSE-FLYBODY LIMITATIONS.md dist/ && rm -f dist/_headers && hf upload abgunaydin/webgpu-fly dist . --repo-type=space",
"deploy:vercel": "npm run build && vercel --prod",
"deploy:r2": "bash tools/upload_to_r2.sh"
},
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/node": "^25.6.0",
"@webgpu/types": "^0.1.69",
"typescript": "^6.0.2",
"vite": "^8.0.8"
},
"dependencies": {
"@mujoco/mujoco": "^3.8.0",
"@types/three": "^0.184.0",
"three": "^0.184.0"
}
}