-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
60 lines (60 loc) · 1.87 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
{
"name": "@aperturerobotics/bifrost",
"description": "Cross-platform communications daemon and library.",
"version": "0.0.0",
"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": "git+ssh://[email protected]/aperturerobotics/bifrost.git"
},
"type": "module",
"scripts": {
"build": "tsc --project tsconfig.json --noEmit false --outDir ./dist/",
"check": "npm run typecheck",
"typecheck": "tsc --noEmit",
"deps": "depcheck --ignore-patterns=.eslintrc.cjs,package.json --ignores depcheck,prettier,typescript,rimraf,starpc,@aptre/common,@go/github.com",
"codegen": "npm run gen",
"ci": "npm run build && npm run lint:js && npm run lint:go",
"format": "npm run format:js && npm run format:go",
"format:js": "prettier --write './!(vendor|dist)/**/(*.ts|*.tsx|*.js|*.html|*.css)'",
"format:go": "make format",
"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_USE_FLAT_CONFIG=false eslint -c .eslintrc.cjs --ignore-pattern wasm_exec.js ./",
"prepare": "go mod vendor && rimraf ./.tools",
"precommit": "npm run format"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@aptre/common": "^0.19.1",
"depcheck": "^1.4.6",
"prettier": "^3.1.1",
"rimraf": "^6.0.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@aptre/protobuf-es-lite": "^0.4.5",
"starpc": "^0.35.2"
},
"resolutions": {
"@aptre/protobuf-es-lite": "0.4.8"
}
}