-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.35 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
{
"name": "gzweb",
"version": "2.0.14",
"description": "A library for Gazebo and data visualization.",
"type": "module",
"main": "dist/gzweb.js",
"module": "./dist/gzweb.module.js",
"exports": {
".": {
"import": "./dist/gzweb.module.js"
},
"./src/*": "./src/*"
},
"repository": {
"type": "git",
"url": "[email protected]:gazebo-web/gzweb.git"
},
"files": [
"dist/gzweb.js",
"dist/gzweb.min.js",
"dist/gzweb.module.js",
"package.json",
"index.js",
"READEME.md",
"src"
],
"scripts": {
"test": "jest",
"build": "rimraf dist && tsc && rollup -c"
},
"dependencies": {
"eventemitter2": "^6.4.5",
"fast-xml-parser": "^4.1.3",
"jszip": "^3.10.0",
"protobufjs": "^6.11.3",
"rxjs": "^7.5.5",
"three": "^0.141.0",
"three-nebula": "^10.0.3"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"@types/jest": "^28.1.1",
"@types/three": "^0.141.0",
"jest": "^28.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.75.6",
"rollup-plugin-multi-input": "^1.3.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.4",
"typescript": "^4.7.3"
}
}