-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.84 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 1.84 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
80
81
82
83
84
85
86
87
{
"version": "0.3.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"scripts": {
"start": "tsup --watch",
"build": "tsup",
"prepare": "npm run build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"name": "r3f-mag",
"description": "Multithreaded Ammo.js Glue for React Three Fiber. A zero-config, high-performance wrapper for Ammo.js.",
"author": "HyperXR",
"repository": "https://github.com/HyperExtendedReality/r3f-mag",
"module": "dist/index.mjs",
"size-limit": [
{
"path": "dist/index.js",
"limit": "2 MB"
},
{
"path": "dist/index.mjs",
"limit": "2 MB"
}
],
"devDependencies": {
"@react-three/fiber": "^9.0.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.181.0",
"ammojs-typed": "^1.0.6",
"esbuild": "^0.27.0",
"esbuild-plugin-inline-worker": "^0.1.1",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"pretty-quick": "^4.2.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"three": "^0.181.2",
"tslib": "^2.8.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@react-three/drei": "^10.7.7",
"ammo-debug-drawer": "^1.0.1",
"leva": "^0.10.1",
"three-stdlib": "^2.36.1"
},
"peerDependencies": {
"@react-three/fiber": ">=9.4.0",
"react": ">=19.2.0",
"three": ">=0.181.2"
},
"keywords": [
"ammo",
"ammojs",
"ammo.js",
"hooks",
"hook",
"bullet",
"physics",
"react",
"react-three-fiber",
"r3f",
"three",
"threejs",
"three.js",
"react-three-fiber-ammo",
"r3f-mag",
"typescript"
]
}