mirror of
https://github.com/NoCrypt/migu.git
synced 2026-04-21 00:22:08 +00:00
Updated and added additional parameters for building the app
This commit is contained in:
parent
67a1332e09
commit
91e5f4ea21
1 changed files with 33 additions and 4 deletions
37
package.json
37
package.json
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "Miru",
|
"name": "Miru",
|
||||||
"version": "0.6.2",
|
"version": "0.6.2",
|
||||||
"author": "ThaUnknown_",
|
"author": "ThaUnknown <ThaUnknown@users.noreply.github.com>",
|
||||||
"main": "src/index.js",
|
"main": "src/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "SET NODE_ENV=development & concurrently \"npm run web:watch\" \"npm run electron:start\"",
|
"start": "SET NODE_ENV=development & concurrently \"npm run web:watch\" \"npm run electron:start\"",
|
||||||
|
|
@ -46,12 +46,41 @@
|
||||||
"category": "public.app-category.video"
|
"category": "public.app-category.video"
|
||||||
},
|
},
|
||||||
"win": {
|
"win": {
|
||||||
"target": "nsis",
|
"artifactName": "${name}-${os}-${arch}-${version}.${ext}",
|
||||||
|
"target": [
|
||||||
|
{
|
||||||
|
"arch": [
|
||||||
|
"ia32",
|
||||||
|
"x64"
|
||||||
|
],
|
||||||
|
"target": "nsis"
|
||||||
|
}
|
||||||
|
],
|
||||||
"icon": "src/renderer/public/logo.ico"
|
"icon": "src/renderer/public/logo.ico"
|
||||||
},
|
},
|
||||||
"linux": {
|
"linux": {
|
||||||
"category": "Video",
|
"artifactName": "${name}-${os}-${arch}-${version}.${ext}",
|
||||||
"target": "AppImage"
|
"category": "Video;Anime",
|
||||||
|
"description": "Bittorrent streaming software for cats",
|
||||||
|
"icon": "src/renderer/public/logo_cut.png",
|
||||||
|
"desktop": {
|
||||||
|
"Name": "Miru",
|
||||||
|
"Comment": "Bittorrent streaming software for cats",
|
||||||
|
"Keywords": "miru;anime",
|
||||||
|
"Type": "Application",
|
||||||
|
"MimeType": "x-scheme-handler/miru;"
|
||||||
|
},
|
||||||
|
"target": [
|
||||||
|
{
|
||||||
|
"arch": "x64",
|
||||||
|
"target": "AppImage"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"arch": "x64",
|
||||||
|
"target": "deb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"mimeTypes": ["x-scheme-handler/miru"]
|
||||||
},
|
},
|
||||||
"nsis": {
|
"nsis": {
|
||||||
"oneClick": false,
|
"oneClick": false,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue