-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1016 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1016 Bytes
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
{
"name": "virtualbuilder",
"version": "0.0.1",
"description": "",
"module": "./dist/index.js",
"types": "./dist/@types/index.d.ts",
"exports": {
".": {
"types": "./dist/@types/index.d.ts",
"import": "./dist/index.js"
},
"./assetlib/*": "./dist/assetlib/*"
},
"files": [
"dist"
],
"scripts": {
"build:lib": "vite build -c vite.lib.config.js & tsc -p tsconfig.lib.json",
"example:helloworld": "vite -c examples/helloworld/vite.config.js",
"example:rigidbodies": "vite -c examples/rigidbodies/vite.config.js",
"example:robot2wheels": "vite -c examples/robot-2-wheels/vite.config.js --open true"
},
"devDependencies": {
"@tweakpane/core": "^2.0.5",
"typescript": "^6.0.3",
"vite": "^8.0.13"
},
"peerDependencies": {
"three": "^0.184.0"
},
"dependencies": {
"@dimforge/rapier3d-compat": "^0.19.3",
"three": "^0.184.0",
"tweakpane": "^4.0.5"
},
"keywords": [],
"author": "Laurent Dethoor",
"license": "MIT"
}