-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
76 lines (76 loc) · 2.03 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
{
"name": "@foxglove/ws-protocol-examples",
"version": "0.8.2",
"description": "Foxglove WebSocket protocol examples",
"keywords": [
"foxglove",
"websocket",
"robotics",
"ros",
"ros2"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/foxglove/ws-protocol.git"
},
"author": {
"name": "Foxglove Technologies",
"email": "[email protected]"
},
"engines": {
"node": ">= 18"
},
"homepage": "https://foxglove.dev/",
"module": "dist/esm/ws-protocol-examples/src/index.js",
"main": "dist/cjs/ws-protocol-examples/src/index.js",
"typings": "dist/esm/ws-protocol-examples/src/index.d.ts",
"files": [
"dist",
"src"
],
"bin": {
"ws-protocol-examples": "dist/cjs/ws-protocol-examples/src/index.js"
},
"scripts": {
"prepack": "yarn build",
"build": "tsc -b tsconfig.json tsconfig.cjs.json",
"lint": "eslint --fix .",
"lint:ci": "eslint .",
"test": "echo 'Nothing to test'",
"run-example": "tsc -b ../*/tsconfig*.json && ts-node --project tsconfig.cjs.json --files src/index.ts"
},
"devDependencies": {
"@foxglove/eslint-plugin": "2.0.0",
"@foxglove/tsconfig": "2.0.0",
"@types/debug": "^4.1.12",
"@types/lodash": "^4.14.202",
"@types/node": "^22.10.5",
"@types/promise-queue": "^2.2.3",
"@types/ws": "^8.5.13",
"eslint": "9.13.0",
"prettier": "3.3.3",
"ts-node": "10.9.2",
"typescript": "5.7.2",
"typescript-eslint": "8.12.2"
},
"dependencies": {
"@foxglove/rosmsg-serialization": "^2.0.3",
"@foxglove/rosmsg2-serialization": "^2.0.4",
"@foxglove/rostime": "^1.1.2",
"@foxglove/schemas": "^1.6.4",
"@foxglove/wasm-lz4": "^1.0.2",
"@foxglove/wasm-zstd": "^1.0.1",
"@foxglove/ws-protocol": "0.7.4",
"@mcap/core": "^2.1.5",
"boxen": "^7.1.1",
"commander": "^11.1.0",
"debug": "^4",
"eventemitter3": "^5.0.1",
"promise-queue": "^2.2.5",
"protobufjs": "^7.2.6",
"pureimage": "^0.4.13",
"tslib": "^2.8.1",
"ws": "^8.17.1"
}
}