-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 878 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
{
"name": "electron-iso-packager",
"version": "2.0.3",
"os": [
"linux"
],
"description": "Package your Electron app into a self-contained operating system (suitable for virtual machines/ live CDs)",
"main": "index.js",
"scripts": {
"version": "echo $npm_package_version",
"postinstall": "bash remaster/default-remaster.sh; rm -f core.iso; mv output.iso core.iso",
"test": "echo \"Tests are not avaiable yet\""
},
"bin": {
"electron-iso-packager": "./electron-iso-packager.sh"
},
"keywords": [
"electron",
"packager",
"bundler",
"app",
"iso",
"tinycore",
"live",
"os"
],
"repository": {
"type": "git",
"url": "https://github.com/lucafabbian/electron-iso-packager.git"
},
"author": "Luca Fabbian",
"license": "GPL-3.0-or-later",
"peerDependencies": {
"electron-packager": "*"
}
}