-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 KB
/
package.json
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": "three-pinata",
"version": "0.1.0",
"description": "Three.js library for fracturing and slicing non-convex meshes in real time.",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "vite --host 127.0.0.1",
"build": "tsc && vite build",
"preview": "vite preview --host 127.0.0.1",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dgreenheck/three-pinata.git"
},
"keywords": [
"threejs",
"webgl",
"physics"
],
"author": "Dan Greenheck",
"license": "MIT",
"bugs": {
"url": "https://github.com/dgreenheck/three-pinata/issues"
},
"homepage": "https://github.com/dgreenheck/three-pinata#readme",
"dependencies": {
"@dimforge/rapier3d": "^0.13.0",
"three": "^0.158.0",
"vite-plugin-top-level-await": "^1.4.1",
"vite-plugin-wasm": "^3.3.0"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/three": "^0.158.2",
"jest": "^29.7.0",
"prettier": "3.2.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsx": "^4.7.3",
"typescript": "^5.2.2",
"vite": "^4.5.0"
}
}