-
Notifications
You must be signed in to change notification settings - Fork 418
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.32 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.32 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "roslib",
"homepage": "https://robotwebtools.github.io",
"description": "The standard ROS Javascript Library",
"version": "2.0.0",
"license": "BSD-2-Clause",
"files": [
"dist",
"importmap.js"
],
"module": "./dist/RosLib.js",
"exports": {
".": {
"import": "./dist/RosLib.js"
}
},
"type": "module",
"devDependencies": {
"@eslint/js": "^9.32.0",
"@testing-library/react": "^16.0.0",
"@types/node": "^24.0.1",
"@types/ws": "^8.5.10",
"changelog-maker": "^4.4.5",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^61.1.12",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.0.0",
"jiti": "^2.6.1",
"jsdom": "^27.0.0",
"jspm": "^4.2.0",
"roslib-test-backend": "^2.0.0",
"typedoc": "^0.28.14",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0",
"vite": "^7.0.0",
"vite-plugin-checker": "^0.11.0",
"vite-plugin-dts": "^4.0.2",
"vite-plugin-externalize-deps": "^0.10.0",
"vitest": "^4.0.3",
"vitest-fail-on-console": "^0.10.1"
},
"dependencies": {
"@xmldom/xmldom": "^0.9.8",
"bson": "^7.0.0",
"cbor2": "^2.0.1",
"eventemitter3": "^5.0.1",
"fast-png": "^7.0.1",
"uuid": "^13.0.0",
"ws": "^8.0.0"
},
"directories": {
"test": "test"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "vite build",
"doc": "typedoc src/RosLib.ts --treatWarningsAsErrors",
"lint": "eslint .",
"test": "vitest",
"prepublishOnly": "npm run test",
"//": "The sed expression for eventemitter3 is because the package metadata is incorrect in EventEmitter3's package.json",
"generate-importmap": "jspm install --release --provider unpkg && sed -i.bak 's;eventemitter3@5.0.1/index.mjs;eventemitter3@5.0.1/dist/eventemitter3.esm.js;' importmap.js && rm importmap.js.bak",
"prepare": "npm run build && npm run generate-importmap",
"make-changelog": "changelog-maker RobotWebTools roslibjs --markdown | cat - CHANGELOG.md > NEW_CHANGELOG.md && mv NEW_CHANGELOG.md CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "https://github.com/RobotWebTools/roslibjs"
},
"bugs": {
"url": "https://github.com/RobotWebTools/roslibjs/issues"
},
"keywords": [
"ROS",
"ros",
"roslib",
"roslibjs",
"robot"
],
"types": "dist/RosLib.d.ts",
"author": "Robot Webtools Team <robot-web-tools@googlegroups.com> (https://robotwebtools.github.io)",
"contributors": [
{
"name": "Russell Toris",
"email": "rctoris@wpi.edu",
"url": "http://users.wpi.edu/~rctoris/"
},
{
"name": "Jihoon Lee",
"email": "jihoonlee.in@gmail.com"
},
{
"name": "Brandon Alexander",
"email": "balexander@willowgarage.com"
},
{
"name": "David Gossow",
"email": "dgossow@willowgarage.com"
},
{
"name": "Benjamin Pitzer",
"email": "ben.pitzer@gmail.com"
},
{
"name": "Matthijs van der Burgh",
"email": "MatthijsBurgh@outlook.com",
"url": "https://github.com/MatthijsBurgh"
},
{
"name": "Graeme Yeates",
"email": "yeatesgraeme@gmail.com"
},
{
"name": "Ezra Brooks",
"email": "ezra@brooks.cx",
"url": "https://github.com/EzraBrooks"
}
]
}