forked from container-storage-interface/spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.04 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
{
"name": "@aperturerobotics/csi-spec",
"description": "The container-storage-interface/spec protobufs.",
"version": "0.0.6",
"license": "Apache-2.0",
"author": {
"name": "Aperture Robotics LLC.",
"email": "[email protected]",
"url": "http://aperture.us"
},
"contributors": [
{
"name": "Christian Stewart",
"email": "[email protected]",
"url": "http://github.com/paralin"
}
],
"repository": {
"url": "[email protected]:aperturerobotics/csi-spec.git"
},
"scripts": {
"build": "tsc --project tsconfig.json --noEmit false --module ES6 --target es2022 --outDir ./dist/",
"check": "npm run typecheck",
"typecheck": "tsc --noEmit",
"deps": "depcheck --ignores bufferutil,utf-8-validate,ts-proto,ts-poet,esbuild,starpc",
"codegen": "npm run gen",
"ci": "npm run build && npm run lint:js && npm run lint:go",
"format": "prettier --write './!(vendor|dist)/**/(*.ts|*.tsx|*.js|*.html|*.css)'",
"gen": "make genproto",
"test": "make test && npm run check",
"test:js": "echo No JS tests.",
"demo": "make demo",
"lint": "npm run lint:go && npm run lint:js",
"lint:go": "make lint",
"lint:js": "eslint -c .eslintrc.js --ext .ts ./**/*.ts",
"patch": "patch-package --use-yarn --patch-dir ./node_modules/@aperturerobotics/ts-common/patches",
"prepare": "npm run patch && go mod vendor",
"precommit": "npm run format"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@aperturerobotics/ts-common": "^0.6.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"depcheck": "^1.4.3",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"patch-package": "^7.0.0",
"prettier": "^2.8.8",
"ts-proto": "^1.150.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@aperturerobotics/ts-proto-common-types": "^0.2.0",
"bufferutil": "^4.0.7",
"long": "^5.2.3",
"protobufjs": "^7.2.3",
"starpc": "^0.19.2",
"utf-8-validate": "^6.0.3"
}
}