-
Notifications
You must be signed in to change notification settings - Fork 382
/
package.json
71 lines (71 loc) · 1.63 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
{
"name": "roslib",
"homepage": "https://robotwebtools.github.io",
"description": "The standard ROS Javascript Library",
"version": "1.4.1",
"license": "BSD-2-Clause",
"files": [
"dist"
],
"main": "./dist/RosLib.umd.cjs",
"module": "./dist/RosLib.js",
"exports": {
".": {
"import": "./dist/RosLib.js",
"require": "./dist/RosLib.umd.cjs"
}
},
"type": "module",
"devDependencies": {
"@testing-library/react": "^16.0.0",
"@types/node": "^22.0.0",
"@types/ws": "^8.5.10",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"jsdoc": "^4.0.2",
"jsdom": "^25.0.0",
"typescript": "^5.2.2",
"vite": "^5.1.3",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-dts": "^4.0.2",
"vitest": "^2.0.2"
},
"dependencies": {
"@xmldom/xmldom": "^0.9.0",
"cbor-js": "^0.1.0",
"eventemitter3": "^5.0.1",
"pngparse": "^2.0.0",
"ws": "^8.0.0"
},
"directories": {
"example": "examples",
"test": "test"
},
"engines": {
"node": ">=0.10"
},
"scripts": {
"build": "vite build",
"doc": "jsdoc -r -c jsdoc_conf.json -d ./doc .",
"lint": "eslint .",
"test": "vitest",
"prepublishOnly": "npm run test",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/RobotWebTools/roslibjs/releases"
},
"bugs": {
"url": "https://github.com/RobotWebTools/roslibjs/issues"
},
"keywords": [
"ROS",
"ros",
"roslib",
"roslibjs",
"robot"
],
"types": "dist/RosLib.d.ts",
"author": "Robot Webtools Team <[email protected]> (https://robotwebtools.github.io)"
}