-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 934 Bytes
/
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
{
"name": "threecs",
"version": "0.0.10",
"files": [
"dist"
],
"main": "./dist/threecs.cjs.js",
"module": "./dist/threecs.es.js",
"exports": {
".": {
"import": "./dist/threecs.es.js",
"require": "./dist/threecs.cjs.js"
}
},
"types": "./dist/threecs.d.ts",
"scripts": {
"dev": "vite",
"build": "npm run build:js && npm run build:types",
"build:js": "vite build",
"build:types": "tsc --declaration --noEmit false --emitDeclarationOnly --strict false --outDir ./dist",
"build-site": "vite build --mode site",
"preview-site": "vite preview"
},
"devDependencies": {
"@dimforge/rapier3d-compat": "^0.7.6",
"@types/three": "^0.138.0",
"bitecs": "^0.3.37",
"three": "^0.138.0",
"typescript": "^4.4.4",
"vite": "^2.8.5"
},
"peerDependencies": {
"@dimforge/rapier3d-compat": "^0.7.6",
"bitecs": "^0.3.37",
"three": "^0.138.0"
}
}