-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 912 Bytes
/
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
{
"name": "linux-performance-control",
"version": "2.0.2",
"description": "Linux性能管理",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"author": {
"name": "xsf",
"email": "[email protected]"
},
"license": "GPL-3.0-or-later",
"repository": "https://github.com/xushengfeng/linux-performance-control.git",
"devDependencies": {
"electron": "^15.1.0",
"electron-builder": "^22.11.7"
},
"build": {
"linux": {
"icon": "assets/icons",
"category": "System",
"target": [
"tar.gz",
"deb",
"pacman"
]
},
"extraResources": [
"./assets/**",
"./run.sh"
]
},
"dependencies": {
"sudo-prompt": "^9.2.1"
}
}