forked from felixmariotto/three-mesh-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.18 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
46
47
48
49
50
51
{
"name": "three-mesh-ui",
"version": "6.5.4-rollup",
"description": "a library on top of three.js to help in creating 3D user interfaces",
"engines": {
"node": "x.x.x"
},
"files": [
"build",
"src"
],
"main": "build/three-mesh-ui.cjs.js",
"module": "build/three-mesh-ui.esm.js",
"types": "src/types.d.ts",
"scripts": {
"build": "rollup -c",
"lint": "eslint -c config/codestyle/.eslintrc src examples"
},
"repository": {
"type": "git",
"url": "git@github.com:u-next/three-mesh-ui.git"
},
"keywords": [
"three.js",
"ui",
"user-interface",
"vr",
"ar",
"virtual reality",
"webXR"
],
"author": "felix mariotto",
"license": "MIT",
"bugs": {
"url": "https://github.com/felixmariotto/Three-Mesh-UI/issues"
},
"homepage": "https://github.com/felixmariotto/Three-Mesh-UI#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.3",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/three": "^0.136.1",
"acorn": "^8.7.0",
"eslint": "^8.13.0",
"rollup": "^2.77.0",
"tslib": "^2.4.0",
"rollup-plugin-visualizer": "^5.9.0"
},
"peerDependencies": {
"three": ">=0.144.0"
}
}