-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.22 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
{
"name": "digitalbacon-ui",
"version": "0.1.8",
"type": "module",
"description": "UI library for three.js that supports touch screen, mouse, and WebXR hardware",
"main": "/build/DigitalBacon-UI.min.js",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/kalegd/DigitalBacon-UI.git"
},
"bugs": "https://github.com/kalegd/DigitalBacon-UI/issues",
"homepage": "https://github.com/kalegd/DigitalBacon-UI#readme",
"keywords": [
"webxr",
"ui",
"three.js"
],
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"lint": "eslint ./scripts --ext .js",
"lint-fix": "eslint ./scripts --ext .js --fix",
"start": "http-server -c-1 -p 8000",
"start-ssl": "http-server -S -c cert.pem -c-1 -p 8000",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^8.56.0",
"http-server": "^14.1.1",
"rollup": "^4.9.1",
"rollup-plugin-root-import": "^1.0.0"
},
"dependencies": {
"nipplejs": "^0.10.1",
"runes2": "^1.1.4",
"three": "^0.169.0",
"three-mesh-bvh": "^0.8.0",
"troika-three-text": "^0.49.1"
}
}