-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.61 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.61 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "portpilot",
"version": "1.6.2",
"description": "Localhost port and app manager for developers",
"main": "src/main/main.js",
"author": {
"name": "Macdara",
"email": "macdara.work@gmail.com",
"url": "https://github.com/m4cd4r4"
},
"homepage": "https://github.com/m4cd4r4/PortPilot",
"repository": {
"type": "git",
"url": "https://github.com/m4cd4r4/PortPilot.git"
},
"scripts": {
"start": "node launch.js",
"dev": "node launch.js --dev",
"test": "node tests/run-comprehensive.js",
"test:v1.3": "node tests/v1.3.0-features.spec.js",
"test:all": "node tests/run-comprehensive.js && node tests/v1.3.0-features.spec.js",
"screenshots": "node take-screenshots.js",
"build": "electron-builder --win",
"build:linux": "electron-builder --linux",
"build:portable": "electron-builder --win portable",
"build:all": "electron-builder --win nsis portable",
"build:all-platforms": "electron-builder --win --linux",
"dist": "electron-builder --win --publish never"
},
"keywords": [
"ports",
"localhost",
"developer-tools",
"electron"
],
"license": "MIT",
"devDependencies": {
"electron": "^27.3.11",
"electron-builder": "^26.0.12",
"playwright": "^1.57.0",
"png-to-ico": "^3.0.1"
},
"build": {
"appId": "com.macdara.portpilot",
"productName": "PortPilot",
"copyright": "Copyright © 2026 Macdara",
"directories": {
"output": "dist",
"buildResources": "public"
},
"files": [
"src/**/*",
"public/**/*",
"package.json"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
],
"icon": "public/icon.png",
"artifactName": "${productName}-${version}-${arch}.${ext}",
"signAndEditExecutable": false
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "PortPilot"
},
"portable": {
"artifactName": "${productName}-${version}-portable.${ext}"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "deb",
"arch": [
"x64"
]
}
],
"icon": "public/icon.png",
"category": "Development",
"artifactName": "${productName}-${version}-${arch}.${ext}"
}
}
}