forked from felixmariotto/three-mesh-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.67 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
52
53
54
55
56
{
"name": "three-mesh-ui",
"version": "6.5.4",
"description": "a library on top of three.js to help in creating 3D user interfaces",
"engines": {
"node": "x.x.x"
},
"main": "build/three-mesh-ui.min.js",
"module": "build/three-mesh-ui.module.js",
"types": "src/types.d.ts",
"scripts": {
"test": "echo \"No test specified yet\"",
"lint": "eslint -c config/codestyle/.eslintrc src examples",
"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": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/eslint-plugin": "^7.17.7",
"@babel/preset-env": "^7.16.11",
"@types/three": "^0.136.1",
"acorn": "^8.7.0",
"eslint": "^8.13.0",
"eslint-webpack-plugin": "^3.1.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"peerDependencies": {
"three": ">=0.144.0"
}
}