-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.38 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
{
"name": "@foxglove/message-definition",
"version": "0.4.0",
"description": "Defines common types for message definition schemas (ROS .msg, Protobuf, FlatBuffers, IDL, PX4 ULog, JSON Schema, etc)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/foxglove/message-definition.git"
},
"keywords": [
"schema",
"message",
"definition",
"serialization",
"deserialization",
"msg",
"msgdef",
"idl",
"protobuf",
"parser",
"grammar"
],
"author": {
"name": "Foxglove Technologies Inc",
"email": "[email protected]"
},
"homepage": "https://github.com/foxglove/message-definition",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "yarn clean && tsc -b ./tsconfig.build.json",
"clean": "rm -rf dist tsconfig.build.tsbuildinfo",
"lint:ci": "eslint .",
"lint": "eslint --fix .",
"prepack": "yarn build",
"prepublishOnly": "yarn lint:ci",
"test": "jest"
},
"devDependencies": {
"@foxglove/eslint-plugin": "2.0.0",
"@foxglove/tsconfig": "2.0.0",
"@types/jest": "29.5.14",
"eslint": "9.14.0",
"globals": "15.12.0",
"jest": "29.7.0",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"typescript": "5.6.3",
"typescript-eslint": "8.13.0"
},
"packageManager": "[email protected]"
}