This repository has been archived by the owner on Jan 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
79 lines (79 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
77
78
79
{
"name": "@foxglove/ros1",
"version": "3.0.0",
"description": "Standalone TypeScript implementation of the ROS 1 (Robot Operating System) protocol with a pluggable transport layer",
"license": "MIT",
"keywords": [
"ros",
"ros1",
"robot",
"operating",
"system",
"tcp",
"protocol",
"sockets"
],
"repository": {
"type": "git",
"url": "https://github.com/foxglove/ros1.git"
},
"author": {
"name": "Foxglove Technologies Inc",
"email": "[email protected]"
},
"homepage": "https://github.com/foxglove/ros1",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./nodejs": "./dist/nodejs/index.js"
},
"files": [
"dist",
"src",
"nodejs.d.ts",
"nodejs.js"
],
"bin": {
"roscore": "./dist/nodejs/roscore.js"
},
"scripts": {
"build": "tsc -b",
"lint:ci": "eslint --report-unused-disable-directives .",
"lint": "eslint --report-unused-disable-directives --fix .",
"prepack": "yarn build",
"prepublishOnly": "yarn lint:ci && yarn test",
"test": "jest",
"roscore": "node -r esbuild-runner/register src/nodejs/roscore.ts"
},
"engines": {
"node": ">= 14"
},
"devDependencies": {
"@foxglove/eslint-plugin": "0.21.0",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.54.0",
"esbuild": "0.17.10",
"esbuild-runner": "2.2.2",
"eslint": "8.35.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-es": "4.1.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.4.3",
"prettier": "2.8.4",
"ts-jest": "29.0.5",
"typescript": "4.9.5"
},
"dependencies": {
"@foxglove/message-definition": "^0.2.0",
"@foxglove/rosmsg": "^4.0.0",
"@foxglove/rosmsg-serialization": "^2.0.0",
"@foxglove/xmlrpc": "^1.3.0",
"eventemitter3": "^5.0.0",
"ipaddr.js": "^2.0.1"
}
}