-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.89 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "sorrygle-desktop",
"version": "1.1.0",
"description": "A Sorrygle Editor Desktop app made with Electron\r ## What is Sorrygle?\r [Sorrygle](https://github.com/JJoriping/Sorrygle) is MML made by [JJoriping](https://github.com/JJoriping)",
"main": "index.js",
"scripts": {
"start": "electron .",
"build:win32": "electron-builder --win portable --ia32",
"build:win64": "electron-builder --win portable --x64",
"build:win": "npm run build:win32 && npm run build:win64",
"build:linux": "npm run build:linux32 && npm run build:linux64",
"build:linux32": "electron-builder --linux --ia32",
"build:linux64": "electron-builder --linux --x64",
"build:osx": "electron-builder --mac"
},
"build": {
"productName": "Sorrygle Desktop",
"appId": "com.rihayoru.sorrygleDesktop",
"asar": true,
"protocols": {
"name": "Sorrygle Desktop",
"schemes": [
"Sorrygle Desktop"
]
},
"win": {
"target": [
"zip",
"nsis"
],
"icon": "./assets/favicon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"directories": {
"buildResources": "./resources/installer/",
"output": "./dist/",
"app": "."
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/rihayoru/Sorrygle-Desktop.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rihayoru/Sorrygle-Desktop/issues"
},
"homepage": "https://github.com/rihayoru/Sorrygle-Desktop#readme",
"dependencies": {
"@fontsource/ubuntu": "^4.2.1",
"@fortawesome/fontawesome-free": "^6.4.0",
"dialog": "^0.3.1",
"fs-extra": "^10.0.0",
"remote": "^0.2.6",
"sorrygle-node12": "^1.3.1-aa"
},
"devDependencies": {
"electron": "^25.2.0",
"electron-builder": "24.4.0",
"electron-reload": "^2.0.0-alpha.1"
}
}