-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.26 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
{
"name": "@balena/autokit",
"version": "1.1.1",
"description": "software interface for Autokit",
"main": "build/index.js",
"files": [
"build/"
],
"repository": {
"type": "git",
"url": "https://github.com/balena-io-hardware/autokit-sw"
},
"scripts": {
"build": "npx tsc",
"test": "echo \"No test specified\" && exit 0",
"prepack": "npm run build",
"docs": "rimraf ./docs/ && npx typedoc --tsconfig tsconfig.json && touch docs/.nojekyll"
},
"engines": {
"node": ">=18.0.0 < 19"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@balena/usbrelay": "^0.1.4",
"bluebird": "^3.7.2",
"bluebird-retry": "^0.11.0",
"dbus-next": "^0.10.2",
"debug": "^4.3.4",
"etcher-sdk": "^9.1.0",
"fs-extra": "^10.1.0",
"mz": "^2.7.0",
"node-hid": "^2.1.2",
"serialport": "^9.0.0",
"xxhash-addon": "^2.0.3"
},
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/bluebird-retry": "^0.11.5",
"@types/fs-extra": "^9.0.13",
"@types/mz": "^2.7.4",
"@types/serialport": "^8.0.5",
"rimraf": "^3.0.2",
"typedoc": "^0.23.21",
"typedoc-theme-hierarchy": "^3.0.0",
"typescript": "^4.9.5"
},
"versionist": {
"publishedAt": "2024-12-03T10:49:03.154Z"
}
}