forked from felixmariotto/three-mesh-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
{
"name": "three-mesh-ui",
"version": "6.0.2",
"description": "a library on top of three.js to help in creating 3D user interfaces",
"engines": {
"node": "x.x.x"
},
"main": "dist/three-mesh-ui.js",
"module": "src/three-mesh-ui.js",
"scripts": {
"test": "echo \"No test specified yet\"",
"lint": "eslint -c config/.eslintrc src",
"build": "npx webpack --config config/webpack.config.js",
"build-site": "npx webpack --config config/webpack.prodConfig.js --env.NODE_ENV=prod",
"start": "webpack-dev-server --config config/webpack.prodConfig.js --open --env.NODE_ENV=dev",
"heroku-postbuild": "npx webpack --config config/webpack.prodConfig.js --env.NODE_ENV=prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felixmariotto/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": {
"eslint": "^7.25.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"peerDependencies": {
"three": "^0.132.1"
}
}