-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
59 lines (59 loc) · 1.9 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
{
"name": "@foxglove/schemas",
"version": "1.6.6",
"description": "Foxglove-defined message schemas for ROS, Protobuf, FlatBuffers, OMG IDL, and JSON",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/foxglove/schemas.git"
},
"author": {
"name": "Foxglove Technologies Inc",
"email": "support@foxglove.dev"
},
"engines": {
"node": ">=16"
},
"packageManager": "yarn@4.6.0",
"main": "schemas/typescript/index.js",
"typings": "schemas/typescript/index.d.ts",
"scripts": {
"prepack": "yarn update-generated-files && tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint:ci": "eslint --report-unused-disable-directives .",
"lint": "eslint --report-unused-disable-directives --fix .",
"test": "jest",
"update-generated-files": "yarn test --updateSnapshot && ts-node --files --project tsconfig.json ./scripts/updateGeneratedFiles.ts --out-dir schemas --ros-out-dir ros_foxglove_msgs"
},
"devDependencies": {
"@foxglove/eslint-plugin": "2.0.0",
"@foxglove/omgidl-parser": "^0.2.0",
"@foxglove/rosmsg": "^4.0.0",
"@foxglove/tsconfig": "2.0.0",
"@types/jest": "29.5.14",
"@types/node": "22.13.0",
"@typescript-eslint/eslint-plugin": "8.22.0",
"@typescript-eslint/parser": "8.22.0",
"ajv": "^8.12.0",
"commander": "^10.0.0",
"eslint": "9.19.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-es": "4.1.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-prettier": "5.2.3",
"jest": "29.7.0",
"prettier": "^3.4.2",
"prettier-plugin-toml": "^2.0.1",
"protobufjs": "^7.2.2",
"rimraf": "^6.0.1",
"ts-jest": "29.2.5",
"ts-node": "^10.9.2",
"typescript": "5.7.3"
},
"dependencies": {
"@foxglove/rosmsg-msgs-common": "^3.0.0",
"tslib": "^2.8.1"
}
}