-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.12 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
65
66
67
68
69
70
{
"name": "jacdac-cli",
"version": "1.10.0",
"description": "Command line interface for Jacdac",
"preferGlobal": true,
"main": "./dist/cli.ts",
"bin": {
"jacdac": "./jacdac",
"jacdac-cli": "./jacdac"
},
"scripts": {
"lint": "eslint src/**/*.ts",
"prettier": "prettier --write src/**/*.ts",
"build": "node node_modules/microbundle/dist/cli.js --no-compress",
"watch": "node node_modules/microbundle/dist/cli.js watch",
"devtools": "yarn build && node ./dist/cli.js devtools",
"devtools:serial": "yarn build && node ./dist/cli.js devtools --serial",
"devtools:usb": "yarn build && node ./dist/cli.js devtools --usb",
"test:usb": "yarn build && node ./dist/cli.js stream --usb --packets --sensors",
"publish:pi": "yarn build && scp -r ../jacdac-ts/dist/* pi@192.168.0.131:/home/pi/gh/jacdac-cli/node_modules/jacdac-ts/dist && scp -r ./dist/* pi@192.168.0.131:/home/pi/gh/jacdac-cli/dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/jacdac-cli.git"
},
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"keywords": [
"jacdac",
"cli"
],
"author": "Microsoft Corporation",
"bugs": {
"url": "https://github.com/microsoft/jacdac-cli/issues"
},
"homepage": "https://github.com/microsoft/jacdac-cli#readme",
"dependencies": {
"commander": "^9.4.1",
"faye-websocket": "^0.11.4",
"jacdac-ts": "^1.33.0"
},
"devDependencies": {
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"microbundle": "^0.14.2",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^4.9.3"
},
"optionalDependencies": {
"rpio": "^2.4.2",
"serialport": "^10.5.0",
"spi-device": "^3.1.2",
"usb": "^2.5.2"
},
"files": [
"dist",
"public"
]
}