-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.24 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
{
"name": "akou",
"version": "1.0.3",
"description": "",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"build": "electron-builder",
"generate-icons": "electron-icon-builder --input=./img/icon.png --output=build --flatten"
},
"keywords": [],
"author": "AKOU Studio",
"license": "ISC",
"build": {
"appId": "com.akou.akoucms",
"productName": "AKOU Website CMS",
"asar": true,
"files": [
"main.js",
"renderer.js",
"index.html",
"style.css",
"img/*",
"Pages/**/*",
"package.json",
".env"
],
"publish": [
{
"provider": "github",
"owner": "AKKOU",
"repo": "Electron---Website-Manager"
}
],
"directories": {
"buildResources": "build",
"output": "build"
},
"win": {
"icon": "img/icon.png"
}
},
"devDependencies": {
"electron": "^31.1.0",
"electron-builder": "^24.13.3",
"electron-rebuild": "^3.2.9"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.4.5",
"electron-log": "^5.1.7",
"electron-updater": "^6.2.1",
"mariadb": "^3.3.1",
"ssh2": "^1.15.0",
"uuid": "^10.0.0"
}
}