forked from rdub80/aframe-gui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.3 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
{
"name": "aframe-gui",
"version": "0.5.1",
"description": "A-Frame GUI components",
"author": "Leonardo Malave <[email protected]>",
"contributors": [
{
"name": "Roland Dubois",
"email": "[email protected]"
},
{
"name": "Daniel Adams",
"email": "[email protected]"
}
],
"license": "MIT",
"main": "src/index.js",
"scripts": {
"dist": "webpack --mode=development --config webpack.config.js",
"dist-min": "webpack --mode=production --config webpack.config.min.js",
"dist-example": "webpack --mode=development --config webpack.config.example.js",
"dist-example-min": "webpack --mode=production --config webpack.config.example.min.js",
"start": "webpack-dev-server --content-base examples/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/c-frame/aframe-gui.git"
},
"keywords": [
"aframe",
"a-frame",
"aframe-component",
"aframe-vr",
"aframe-gui",
"vr",
"webgl",
"webvr",
"mozvr"
],
"bugs": {
"url": "https://github.com/c-frame/aframe-gui/issues"
},
"homepage": "https://github.com/c-frame/aframe-gui#readme",
"devDependencies": {
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}