forked from kewool/twitch_pip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.06 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "stella_lux",
"version": "3.2.6",
"description": "",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "electron .",
"lint": "eslint . --ext js --fix",
"build": "yarn run build:win && yarn run build:mac",
"build:win": "electron-builder --windows nsis:x64 -p always",
"build:mac": "electron-builder build --mac -p always"
},
"repository": {
"type": "git",
"url": "https://github.com/kewool-project/StellaLux.git"
},
"author": "kewool",
"license": "ISC",
"bugs": {
"url": "https://github.com/kewool-project/StellaLux/issues"
},
"homepage": "https://github.com/kewool-project/StellaLux#readme",
"dependencies": {
"electron-store": "^8.1.0",
"electron-updater": "^6.1.7"
},
"devDependencies": {
"@types/node": "^20.11.16",
"electron": "^28.2.1",
"electron-builder": "^24.9.1",
"electron-log": "^5.1.1",
"electron-rebuild": "^3.2.9",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5"
},
"build": {
"publish": [
{
"provider": "github",
"owner": "kewool-project",
"repo": "StellaLux"
}
],
"productName": "StellaLux",
"appId": "com.kewool.StellaLux",
"asar": true,
"protocols": {
"name": "StellaLux",
"schemes": [
"StellaLux"
]
},
"win": {
"target": [
"nsis"
],
"icon": "./src/assets/icon.ico"
},
"mac": {
"target": {
"target": "default",
"arch": "universal"
},
"icon": "./src/assets/icon4.png"
},
"dmg": {
"title": "StellaLux",
"icon": "./src/assets/icon4.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"shortcutName": "스텔라루스",
"deleteAppDataOnUninstall": true,
"perMachine": true
},
"directories": {
"buildResources": "./resources/installer/",
"output": "./dist/",
"app": "."
}
}
}