-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
86 lines (86 loc) · 3.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
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "arena-core",
"version": "2.1.1",
"description": "Core browser client for ARENA",
"author": "CONIX Center",
"license": "BSD-3-Clause",
"default": "dist/arena-core.js",
"browserslist": [
"last 2 firefox versions"
],
"alias": {
"three": "three-shim",
"super-three": "three-shim"
},
"overrides": {
"super-three": "file:src/shims/three-shim",
"three": "file:src/shims/three-shim"
},
"dependencies": {
"@c-frame/aframe-particle-system-component": "^1.1.4",
"aframe-blink-controls": "^0.4.3",
"aframe-environment-component": "^1.3.4",
"aframe-extras": "^7.0.0",
"aframe-gaussian-splatting-component": "^0.0.19",
"aframe-thickline-component": "^0.0.3",
"axios": "^1.7.4",
"comlink": "^4.3.0",
"he": "^1.2.0",
"linkifyjs": "^2.1.9",
"mqtt-pattern": "^2.1.0",
"msgpackr": "^1.10.1",
"notiflix": "^3.2.7",
"paho-mqtt": "^1.1.0",
"three": "file:src/shims/three-shim",
"three-mesh-ui": "github:felixmariotto/three-mesh-ui#8294586",
"three-pathfinding": "^1.1.0",
"three-shim": "file:src/shims/three-shim",
"uuidjs": "^5.0.1",
"webxr-polyfill": "^2.0.3",
"xacro-parser": "github:gkjohnson/xacro-parser#2c75369"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@parcel/babel-plugin-transform-runtime": "^2.2.1",
"@parcel/babel-preset-env": "^2.2.1",
"@parcel/transformer-glsl": "^2.9.1",
"buffer": "^6.0.3",
"eslint": "^8.42.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.1",
"jsdoc": "^3.6.6",
"jsdoc-to-markdown": "^7.0.1",
"parcel": "^2.2.1",
"parcel-resolver-ignore": "^2.0.0",
"prettier": "^3.0.3",
"process": "^0.11.10"
},
"scripts": {
"collect-static": "cp src/systems/armarker/apriltag-detector/apriltag*.* dist/",
"prewatch": "npm run collect-static",
"watch": "parcel watch src/index.js",
"prebuild": "npm run collect-static",
"build": "parcel build src/index.js --public-url ./dist",
"build-ci": "npm run prebuild && parcel build src/index.js --public-url ./dist --no-cache",
"build-nominify": "npm run prebuild && parcel build src/index.js --public-url ./dist --no-optimize",
"predocs": "echo '# A-Frame components (modules) added to support ARENA core functionality\n' > src/components/README.md; echo '# A-Frame systems (modules) added to support ARENA core functionality\n' > src/systems/README.md",
"docs": "jsdoc2md src/components/*.js >> src/components/README.md; jsdoc2md src/systems/*.js >> src/systems/README.md",
"lint": "eslint --fix .",
"format": "prettier -w ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/arenaxr/arena-web-core.git"
},
"bugs": {
"url": "https://github.com/arenaxr/arena-web-core/issues"
},
"homepage": "https://github.com/arenaxr/arena-web-core#readme",
"parcelIgnore": [
"apriltag.js",
"apriltag_wasm.js",
"apriltag_wasm.wasm"
]
}