-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.22 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.22 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
{
"name": "mobius",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Turn arXiv physics papers into interactive browser simulators.",
"license": "MIT",
"author": "David Hayot <davidhayot.pro@gmail.com>",
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@9.15.0",
"scripts": {
"dev": "vite --port 5173",
"dev:server": "tsx watch server/src/dev_server.ts",
"dev:server:live": "tsx server/src/dev_server.ts",
"build": "vite build",
"preview": "vite preview --port 5173",
"check": "biome check .",
"format": "biome format --write .",
"preflight": "bash scripts/preflight.sh",
"test": "node --test --experimental-strip-types server/tests/*.test.ts"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@playwright/test": "^1.59.1",
"@types/node": "^22.10.0",
"@types/three": "0.184.0",
"playwright": "^1.59.1",
"tsx": "^4.19.2",
"typescript": "5.9.3",
"vite": "^8.0.7"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.91.1",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"gsap": "3.15.0",
"katex": "0.16.45",
"pixi.js": "8.18.1",
"postprocessing": "6.39.1",
"three": "0.184.0",
"zod": "^4.3.6"
}
}