-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.38 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
44
45
46
47
48
{
"name": "grok-zephyr",
"version": "1.0.0",
"description": "WebGPU-powered orbital simulation with 1M+ satellites",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:standalone": "vite build --mode standalone",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"lint": "eslint . && knip",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:visual": "playwright test",
"test:visual:update": "UPDATE_BASELINES=1 playwright test",
"build:wasm": "bash native/build.sh",
"deploy": "python deploy.py",
"deploy:pages": "echo 'GitHub Pages: push to main (after Test passes) or run the Deploy workflow in Actions.'"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.52.0",
"@types/node": "^20.10.0",
"@types/pixelmatch": "^5.2.6",
"@vitest/ui": "^4.1.7",
"@webgpu/types": "^0.1.69",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"knip": "^6.26.0",
"pixelmatch": "^7.1.0",
"pngjs": "^7.0.0",
"prettier": "^3.9.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.63.0",
"vite": "^5.0.0",
"vitest": "^4.1.7"
},
"dependencies": {
"satellite.js": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}