-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 KB
/
package.json
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
{
"name": "sapi-desktop",
"version": "1.0.0",
"description": "SAPI (Simple API) - Desktop Application",
"productName": "Simple API",
"copyright": "Copyright © 2024 simple-api.app",
"main": "main.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"package:mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --out=out --icon=public/icons/mac/icon.icns/sapi-1024",
"make": "electron-forge make",
"publish": "electron-forge publish"
},
"author": "Goncalo Fontoura",
"license": "ISC",
"devDependencies": {
"@electron-forge/cli": "^7.3.0",
"@electron-forge/maker-deb": "^7.3.0",
"@electron-forge/maker-rpm": "^7.3.0",
"@electron-forge/maker-squirrel": "^7.3.0",
"@electron-forge/maker-zip": "^7.3.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.3.0",
"@electron-forge/plugin-fuses": "^7.3.0",
"@electron/packager": "^18.1.3",
"electron": "29.1.0"
},
"dependencies": {
"electron-json-storage": "^4.6.0",
"electron-squirrel-startup": "^1.0.0"
},
"files": [
"./build/**/*",
"./dist/**/*",
"./node_modules/**/*",
"./public/**/*",
"*.js"
],
"directories": {
"buildResources": "public"
},
"build": {
"appId": "com.simple-api.app",
"directories": {
"output": "build"
},
"mac": {
"icon": "public/icons/mac/icon.icns/sapi-256",
"category": "public.app-category.developer-tools"
},
"win": {
"icon": "public/icons/win/sapi"
}
}
}