-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.06 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.06 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
{
"name": "virtualdev",
"version": "0.2.0",
"description": "Framework for developing virtual worlds for the web",
"license": "MIT",
"author": "Laurent Dethoor aka LD2Studio",
"main": "./dist/virtualdev.cjs.js",
"module": "./dist/virtualdev.es.js",
"types": "./dist/types/virtualdev.d.ts",
"exports": {
".": {
"types": "./dist/types/virtualdev.d.ts",
"import": "./dist/virtualdev.es.js",
"require": "./dist/virtualdev.cjs.js"
}
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "vite build && npm run build:types",
"build:types": "tsc",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@tweakpane/core": "^2.0.5",
"@types/three": "^0.182.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitepress": "^2.0.0-alpha.16"
},
"peerDependencies": {
"three": "^0.182.0",
"tweakpane": "^4.0.5"
},
"dependencies": {
"@dimforge/rapier3d-compat": "^0.19.3",
"stats-gl": "^4.0.2"
}
}