-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "@fern-solutions/aframe-highlight",
"version": "0.2.0",
"description": "A-Frame component for giving objects a highlight when occluded",
"module": "dist/highlight.esm.min.js",
"browser": "dist/highlight.umd.min.js",
"main": "dist/highlight.esm.min.js",
"author": "Noeri Huisman",
"license": "MIT",
"scripts": {
"dev": "concurrently \"rollup -c -w\" \"live-server --port=4000 --no-browser ./example --mount=/js:./dist\"",
"build": "rollup -c",
"watch": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrxz/fern-aframe-components"
},
"bugs": {
"url": "https://github.com/mrxz/fern-aframe-components/issues"
},
"homepage": "https://github.com/mrxz/fern-aframe-components/tree/main/highlight/#readme",
"keywords": [
"aframe",
"vr",
"xr",
"webxr"
],
"files": [
"dist"
],
"devDependencies": {
"@compodoc/live-server": "1.2.3",
"concurrently": "^7.1.0",
"rollup": "^2.71.1",
"rollup-plugin-terser": "^7.0.2"
}
}