-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.28 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.28 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
{
"name": "flowcode-agent",
"version": "1.0.1",
"description": "",
"main": "index.js",
"bin": "dist/src/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "tsx src/index.ts",
"build": "tsc",
"dist": "npm run build && powershell -ExecutionPolicy Bypass -File fix-subsystem.ps1",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArtronShop/flowcode-agent.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/ArtronShop/flowcode-agent/issues"
},
"homepage": "https://github.com/ArtronShop/flowcode-agent#readme",
"dependencies": {
"auto-launch": "^5.0.6",
"serialport": "^13.0.0",
"systray2": "^2.1.4",
"tsx": "^4.19.4",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/auto-launch": "^5.0.5",
"@types/node": "^25.5.2",
"@types/ws": "^8.18.1",
"copyfiles": "^2.4.1",
"esbuild": "^0.28.0",
"ts-node": "^10.9.2",
"typescript": "^6.0.2"
},
"pkg": {
"scripts": "dist/src/main.js",
"assets": [
"node_modules/@serialport/bindings-cpp/prebuilds/**/*",
"asset/**/*"
],
"targets": ["node18-win-x64"],
"outputPath": "dist"
}
}