-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.33 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
{
"name": "virtualkeyboard-vr-ready",
"version": "1.0.1",
"description": "A virtual keyboard heavily inspired by Google's Gboard. Build with WebXR/VR in mind.",
"main": "src/index.js",
"author": "Erik Sombroek",
"license": "MIT",
"private": false,
"scripts": {
"build": "env NODE_ENV=production rollup -c",
"dev": "rollup -c",
"watch": "npm-run-all --parallel watch:*",
"watch:rollup": "rollup -cw",
"watch:server": "http-server build"
},
"dependencies": {
"@babel/core": "^7.0.0-0",
"@babel/preset-env": "^7.6.3",
"@rollup/plugin-strip": "^1.3.1",
"http-server": "^0.11.1",
"npm-run-all": "^4.1.5",
"rollup": "^1.21.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-conditional": "^3.1.2",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-strip-code": "^0.2.7",
"rollup-plugin-terser": "^5.1.1",
"string-similarity": "^4.0.2"
},
"repository": "github:ErikSom/VirtualKeyboard-VR-Ready",
"devDependencies": {},
"keywords": [
"keyboard",
"ui",
"vr",
"webxr",
"threejs",
"customizable"
]
}