-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.73 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
{
"name": "GatewayConfigTool",
"version": "1.3.25",
"description": "",
"main": "index.js",
"homepage": "https://aprbrother.com",
"repository": {
"type": "git",
"url": "https://github.com/AprilBrother/gw4-config-tool.git"
},
"dependencies": {
"@serialport/parser-ready": "^12.0.0",
"compare-versions": "^4.1.3",
"i18next": "^23.10.1",
"jquery": "^3.6.0",
"jquery-i18next": "^1.2.1",
"jquery-ui-dist": "^1.13.2",
"node-fetch": "^2.7.0",
"purecss": "^3.0.0",
"serialport": "^12.0.0",
"slip": "^1.0.2"
},
"devDependencies": {
"electron": "26.3.0",
"electron-builder": "^23.6.0",
"gulp": "^5.0.0"
},
"author": {
"name": "Yanc",
"email": "[email protected]"
},
"license": "ISC",
"postinstall": "electron-builder install-app-deps",
"build": {
"appId": "v4.gateway.ab",
"win": {
"target": [
"nsis"
],
"artifactName": "${productName}-setup-${version}.${ext}"
},
"publish": [
{
"provider": "github"
}
],
"mac": {
"category": "public.app-category.developer-tools"
}
},
"scripts": {
"start": "electron .",
"archive": "mkdir -p build && git archive --format zip --output build/archive.zip master",
"v": "electron -v",
"lib": "gulp lib",
"pack": "electron-builder --dir ",
"dist:win": "electron-builder --win",
"dist:win32": "electron-builder --win --ia32",
"dist:osx": "electron-builder -m",
"dist:deb": "electron-builder --linux deb"
}
}