-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.01 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.01 KB
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
71
72
73
74
75
76
77
78
{
"name": "switchsetup",
"version": "0.0.8",
"description": "",
"main": "index.ts",
"scripts": {
"test": "ts-node src/test.ts",
"build": "webpack",
"build-win": "webpack && pkg -t node18-win-x64 --compress Brotli --out-path bin . && node manifest.js",
"build-mac": "webpack && pkg -t node18-macos-arm64 --compress Brotli --out-path bin .",
"clean": "tsc --build --clean",
"lint": "eslint src/*.ts --fix",
"start": "ts-node index.ts",
"cmd": "ts-node src/cmd.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"private": true,
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.30.0",
"node-loader": "^2.0.0",
"pkg": "^5.8.0",
"resedit": "^1.6.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-node-externals": "^3.0.0"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
]
},
"bin": {
"main": "./dist/main.cjs"
},
"pkg": {
"assets": [
"node_modules/@serialport/binding*/**/*"
],
"targets": [
"node18-macos-arm64",
"node18-win-x64",
"node18-win-arm64"
],
"outputPath": "bin"
},
"dependencies": {
"@serialport/parser-delimiter": "^10.5.0",
"@serialport/parser-inter-byte-timeout": "^10.5.0",
"@serialport/parser-ready": "^10.5.0",
"@types/crypto-js": "^4.1.1",
"@types/prompts": "^2.4.2",
"@types/string-format": "^2.0.0",
"chalk": "^5.2.0",
"crypto-js": "^4.1.1",
"log-to-file": "^3.0.3",
"prompts": "^2.4.2",
"serialport": "^10.5.0",
"string-format": "^2.0.0",
"string-width": "^5.1.2",
"telnet-client": "^2.0.6",
"tftp": "^0.1.2",
"ts-node": "^10.9.1",
"win-select-folder": "^1.0.1"
}
}