migu/package.json
2022-04-09 14:38:02 +02:00

98 lines
2.4 KiB
JSON

{
"name": "Miru",
"version": "1.2.2",
"author": "ThaUnknown_ <ThaUnknown@users.noreply.github.com>",
"main": "src/index.js",
"homepage": "https://github.com/ThaUnknown/miru#readme",
"scripts": {
"start": "SET NODE_ENV=development & concurrently \"npm run web:watch\" \"npm run electron:start\"",
"web:watch": "vite",
"electron:start": "electron src",
"build": "vite build && electron-builder",
"publish": "vite build && electron-builder -p always"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.30",
"builtin-modules": "^3.2.0",
"concurrently": "^7.0.0",
"electron": "^16.0.10",
"electron-builder": "^22.14.13",
"electron-notarize": "^1.1.1",
"svelte": "^3.46.4",
"vite": "^2.8.6",
"vite-plugin-commonjs-externals": "^0.1.1"
},
"standard": {
"ignore": [
"bundle.js",
"bundle.map.js"
],
"env": [
"browser",
"node"
]
},
"build": {
"publish": [
{
"provider": "github",
"owner": "ThaUnknown",
"repo": "miru"
}
],
"afterSign": "./build/notarize.js",
"appId": "com.github.thaunknown.miru",
"productName": "Miru",
"files": [
"src/**/*"
],
"mac": {
"category": "public.app-category.video"
},
"win": {
"artifactName": "${name}-${os}-${arch}-${version}.${ext}",
"target": "nsis"
},
"linux": {
"artifactName": "${name}-${os}-${arch}-${version}.${ext}",
"category": "Video;Anime",
"description": "Bittorrent streaming software for cats",
"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": {
"perMachine": true,
"allowToChangeInstallationDirectory": true,
"oneClick": false
}
},
"dependencies": {
"anitomyscript": "^2.0.4",
"discord-rpc": "^4.0.1",
"electron-log": "^4.4.6",
"electron-updater": "^4.6.5",
"matroska-subtitles": "github:ThaUnknown/matroska-subtitles#patch",
"mime": "^3.0.0",
"pump": "^3.0.0",
"range-parser": "^1.2.1",
"webtorrent": "^1.5.0"
}
}