-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.8 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": "@lichtblick/asam-osi-types",
"version": "0.1.0",
"license": "MPL-2.0",
"productName": "ASAM OSI Types",
"productDescription": "Lichtblick Suite",
"description": "ASAM Open Simulation Interface (ASAM OSI) types for Typescript",
"author": {
"name": "Lichtblick",
"email": "[email protected]"
},
"homepage": "https://www.asam.net/standards/detail/osi/",
"repository": {
"type": "git",
"url": "https://github.com/Lichtblick-Suite/asam-osi-types.git"
},
"scripts": {
"setup": "cd open-simulation-interface && pip install ./ && cd .. && rm -rf open-simulation-interface/osi3 proto",
"generate": "buf generate",
"build": "yarn run setup && yarn run generate && tsup index.ts --format cjs,esm --dts",
"lint:ci": "eslint --report-unused-disable-directives .",
"lint": "eslint --report-unused-disable-directives --fix .",
"clean": "rimraf dist",
"format": "prettier --write \"./**/*.{ts,js,json,md}\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@bufbuild/buf": "^1.45.0",
"@bufbuild/protobuf": "^2.2.0",
"@bufbuild/protoc-gen-es": "^2.2.0",
"@lichtblick/eslint-plugin": "^1.0.2",
"@typescript-eslint/eslint-plugin": "6.10.0",
"@typescript-eslint/parser": "6.10.0",
"eslint": "8.50.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-es": "4.1.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.0.2",
"eslint-plugin-prettier": "5.1.3",
"prettier": "3.3.2",
"rimraf": "^6.0.1",
"tsup": "^8.3.0",
"typescript": "^5.6.3"
}
}