-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.54 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
{
"name": "openwrt-configurator",
"version": "0.0.4",
"description": "A CLI to provision configuration onto OpenWrt devices.",
"bin": {
"openwrt-configurator": "./dist/bin/index.js"
},
"scripts": {
"start": "ts-node ./src/index.ts",
"provision": "ts-node --transpile-only ./bin/index.ts provision",
"print-uci-commands": "ts-node --transpile-only ./bin/index.ts print-uci-commands",
"build": "tsc",
"test": "ava",
"test:watch": "ava --watch",
"package": "pkg ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasrusable/openwrt-configurator.git"
},
"author": "Jason Russell",
"license": "ISC",
"bugs": {
"url": "https://github.com/jasrusable/openwrt-configurator/issues"
},
"homepage": "https://github.com/jasrusable/openwrt-configurator#readme",
"pkg": {
"scripts": "dist/**/*.js",
"targets": [
"macos",
"linux",
"windows"
],
"outputPath": "artifacts"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register/transpile-only"
]
},
"dependencies": {
"axios": "^0.27.2",
"boolean-parser": "^0.0.2",
"commander": "^9.4.1",
"is-valid-hostname": "^1.0.2",
"node-ssh": "^13.0.0",
"parse-json": "^5.2.0",
"semver": "^7.3.8",
"timezone-validator": "^1.0.3",
"zod": "^3.19.1"
},
"devDependencies": {
"@types/node": "^17.0.45",
"@types/parse-json": "^4.0.0",
"@types/semver": "^7.3.12",
"ava": "^4.3.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}