-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.12 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.12 KB
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
87
88
{
"name": "kernel-installer",
"version": "1.0.4",
"description": "A GUI installer for kernel-mod.",
"main": "./dist/core.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-core": "rollup -c --type=core",
"build-frontend": "rollup -c --type=frontend",
"dist": "pnpm run build-core && pnpm run build-frontend && electron-builder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kernel-mod/installer-gui.git"
},
"keywords": [
"installer",
"kernel",
"gui"
],
"author": "Strencher, Kyza",
"license": "MIT",
"bugs": {
"url": "https://github.com/kernel-mod/installer-gui/issues"
},
"homepage": "https://github.com/kernel-mod/installer-gui#readme",
"dependencies": {
"preact": "^10.6.4"
},
"devDependencies": {
"electron-builder": "^22.14.5",
"electron": "^16.0.5",
"@rollup/plugin-alias": "^3.1.8",
"@rollup/plugin-html": "^0.2.4",
"@rollup/plugin-node-resolve": "^13.1.1",
"@swc/core": "^1.2.122",
"rollup": "^2.62.0",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-swc": "^0.2.0",
"sass": "^1.45.1"
},
"build": {
"appId": "app.kernel-mod.installer",
"productName": "Kernel",
"files": [
"dist/style.css",
"dist/core.js",
"dist/frontend.js",
"dist/index.html"
],
"win": {
"artifactName": "${productName}-Windows.${ext}",
"icon": "assets/kernel.ico",
"target": {
"target": "portable",
"arch": [
"ia32"
]
}
},
"portable": {
"requestExecutionLevel": "user",
"useZip": true
},
"mac": {
"artifactName": "${productName}-Mac.${ext}",
"icon": "assets/kernel.ico",
"category": "public.app-category.social-networking",
"target": {
"target": "zip",
"arch": [
"x64"
]
}
},
"linux": {
"artifactName": "${productName}-Linux.${ext}",
"category": "Utility",
"target": {
"target": "AppImage",
"arch": [
"x64"
]
}
}
}
}