Yescord-Desktop/package.json
2025-04-17 19:08:38 +05:00

79 lines
1.8 KiB
JSON

{
"name": "Yescord",
"version": "1.0.0",
"description": "Desktop app for makaronyevich's yescord",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build:win": "electron-builder --win --x64 --arm64",
"build:mac": "electron-builder --mac --x64 --arm64",
"build:linux": "electron-builder --linux --x64 --arm64",
"build:all": "npm run build:win && npm run build:mac && npm run build:linux"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Forbirdden/Yescord-Desktop"
},
"author": "Forbirdden <@forbirdden.>",
"dependencies": {
"electron-store": "^8.1.0",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"electron": "^25.0.0",
"electron-builder": "^24.13.3"
},
"build": {
"asar": false,
"appId": "com.forbirdden.yescord",
"productName": "Yescord",
"copyright": "Copyright © 2025 Forbirdden",
"publish": {
"provider": "github",
"releaseType": "release"
},
"win": {
"icon": "logo.png",
"target": [
{
"target": "nsis",
"arch": ["x64", "arm64"]
}
]
},
"mac": {
"icon": "logo.png",
"target": [
{
"target": "dmg",
"arch": ["x64", "arm64"]
}
],
"category": "public.app-category.developer-tools"
},
"linux": {
"icon": "logo.png",
"target": [
{
"target": "AppImage",
"arch": ["x64", "arm64"]
},
{
"target": "deb",
"arch": ["x64", "arm64"]
},
{
"target": "rpm",
"arch": ["x64", "arm64"]
}
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}