-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.76 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
{
"name": "pinokio-manager",
"version": "1.1.0",
"description": "A modern UI for managing Pinokio versions",
"homepage": "https://github.com/Deathdadev/pinokio-manager",
"repository": {
"type": "git",
"url": "git+https://github.com/Deathdadev/pinokio-manager.git"
},
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"keywords": [
"pinokio",
"version-manager",
"electron"
],
"author": "Death",
"license": "BSD-3-Clause",
"dependencies": {
"axios": "^1.6.2",
"electron-log": "^5.2.4",
"electron-updater": "^6.3.9",
"extract-zip": "^2.0.1",
"marked": "^15.0.6",
"systeminformation": "^5.21.24"
},
"devDependencies": {
"electron": "^27.1.2",
"electron-builder": "^24.9.1"
},
"build": {
"compression": "maximum",
"asar": true,
"files": [
"**/*",
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
"!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}",
"!**/node_modules/*.d.ts",
"!**/node_modules/.bin"
],
"appId": "com.pinokio.manager",
"productName": "Pinokio Manager",
"directories": {
"output": "dist"
},
"publish": {
"provider": "github",
"owner": "Deathdadev",
"repo": "pinokio-manager",
"private": false
},
"win": {
"target": "nsis",
"icon": "assets/icon.ico",
"publish": [
"github"
]
},
"mac": {
"target": "dmg",
"icon": "assets/icon.icns",
"publish": [
"github"
]
},
"linux": {
"target": [
"AppImage",
"deb",
"rpm"
],
"icon": "assets/icon.png",
"publish": [
"github"
]
}
}
}