forked from arenaxr/arena-web-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.13 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
57
58
59
60
61
62
63
{
"name": "arena-core",
"version": "1.0.0",
"description": "Core browser client for ARENA",
"browser": "index.js",
"browserslist": [
"last 3 firefox versions",
"last 3 and_chr versions",
"last 3 chrome versions",
"last 3 opera versions",
"last 3 ios_saf versions",
"last 3 safari versions"
],
"dependencies": {
"aframe": "^1.2.0",
"aframe-extras": "git+https://github.com/n5ro/aframe-extras.git#351608a",
"aframe-particle-system-component": "^1.1.3",
"aframe-spe-particles-component": "^1.0.4",
"aframe-thickline-component": "^0.0.3",
"chat": "^1.0.8",
"comlink": "^4.3.0",
"core-js": "^3.11.1",
"he": "^1.2.0",
"jquery": "^3.6.0",
"linkifyjs": "^2.1.9",
"mqtt-pattern": "^1.2.0",
"paho-mqtt": "^1.1.0",
"sweetalert2": "^10.16.6",
"three": "^0.128.0",
"three-pathfinding": "^0.14.1",
"webxr-polyfill": "^2.0.3"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.25.0",
"eslint-config-google": "^0.14.0",
"jsdoc": "^3.6.6",
"jsdoc-to-markdown": "^7.0.1",
"parcel-bundler": "^1.12.4"
},
"scripts": {
"collect-static": "cp src/apriltag/apriltag_wasm.* dist/",
"prewatch": "npm run collect-static",
"watch": "parcel watch src/index.js -o arena-core.js",
"prebuild": "npm run collect-static",
"build": "parcel build src/index.js -o arena-core.js --public-url ./dist",
"build-nominify": "parcel build src/index.js -o arena-core.js --public-url ./dist --no-minify",
"prebuild-main": "npm run collect-static",
"build-main": "parcel build src/index.js -o arena-core.js --public-url /dist",
"predocs": "echo '# A-Frame components (modules) added to support ARENA core functionality\n' > src/components/README.md",
"docs": "jsdoc2md src/components/*.js >> src/components/README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/conix-center/ARENA-core.git"
},
"author": "CONIX Center",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/conix-center/ARENA-core/issues"
},
"homepage": "https://github.com/conix-center/ARENA-core#readme"
}