-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.11 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "particle-lab",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "A browser-based, GPU-accelerated educational physics lab for particle simulations (React + Three.js WebGPU).",
"license": "MIT",
"author": "Pouyan Jahangiri",
"homepage": "https://pouyanjay.github.io/particlesimulator",
"repository": {
"type": "git",
"url": "https://github.com/PouyanJay/particlesimulator.git"
},
"bugs": {
"url": "https://github.com/PouyanJay/particlesimulator/issues"
},
"keywords": [
"particle-simulation",
"physics",
"webgpu",
"three.js",
"react-three-fiber",
"simulation",
"education"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"typecheck": "tsc -b",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@dimforge/rapier3d-compat": "^0.16.2",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.6.1",
"@react-three/rapier": "^2.2.0",
"@xstate/react": "^6.1.0",
"gifenc": "^1.0.3",
"lz-string": "^1.5.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"three": "^0.184.0",
"uplot": "^1.6.32",
"xstate": "^5.31.1",
"zundo": "^2.3.0",
"zustand": "^5.0.13"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.15.17",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.184.1",
"@vitejs/plugin-react-swc": "^3.9.0",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"jsdom": "^29.1.1",
"r3f-perf": "^7.2.3",
"stats-gl": "^4.1.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^2.1.9"
}
}