-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.58 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.58 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
{
"name": "beacon-flow",
"version": "1.0.1",
"description": "Beacon Flow is a lightweight app for testing APIs by sending requests with different methods and custom parameters.",
"main": "src/main/main.js",
"author": {
"name": "Matéo Florian Callec",
"email": "mateo@callec.net"
},
"homepage": "https://github.com/mateocallec/beacon-flow",
"build": {
"appId": "net.callec.beaconflow",
"productName": "Beacon Flow",
"artifactName": "beacon-flow-${version}-${os}-${arch}.${ext}",
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "assets/icons",
"category": "Utility",
"maintainer": "Matéo Florian Callec <mateo@callec.net>"
},
"mac": {
"target": ["dmg", "zip"],
"icon": "assets/icons/512x512.icns",
"category": "public.app-category.utilities",
"entitlements": "build/entitlements.mac.plist",
"hardenedRuntime": true
},
"win": {
"target": ["nsis", "zip"],
"icon": "assets/icons/512x512.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Beacon Flow"
}
},
"scripts": {
"start": "npx electron .",
"build": "npx electron-builder",
"lint": "npx eslint --init"
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.38.0",
"electron": "^38.3.0",
"electron-builder": "^26.0.12",
"electron-packager": "^17.1.2",
"eslint": "^9.38.0",
"globals": "^16.4.0"
}
}