100 lines
No EOL
2.3 KiB
JSON
100 lines
No EOL
2.3 KiB
JSON
{
|
|
"name": "veza-desktop",
|
|
"version": "1.0.0",
|
|
"description": "Application desktop Veza - Plateforme de streaming et collaboration musicale",
|
|
"main": "dist/electron/main.js",
|
|
"scripts": {
|
|
"dev": "concurrently \"npm run dev:renderer\" \"npm run dev:main\"",
|
|
"dev:renderer": "echo 'Run apps/web dev server separately!'",
|
|
"dev:main": "tsc -p tsconfig.main.json && electron .",
|
|
"build": "npm run build:main",
|
|
"build:main": "tsc -p tsconfig.main.json",
|
|
"dist": "electron-builder",
|
|
"dist:win": "electron-builder --win",
|
|
"dist:mac": "electron-builder --mac",
|
|
"dist:linux": "electron-builder --linux",
|
|
"postinstall": "electron-builder install-app-deps",
|
|
"start": "electron ."
|
|
},
|
|
"keywords": [
|
|
"electron",
|
|
"veza",
|
|
"streaming",
|
|
"music",
|
|
"wrapper"
|
|
],
|
|
"author": "Veza Team",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^18.0.0",
|
|
"concurrently": "^7.0.0",
|
|
"electron": "^25.0.0",
|
|
"electron-builder": "^24.0.0",
|
|
"typescript": "^4.9.0"
|
|
},
|
|
"dependencies": {
|
|
"electron-updater": "^6.0.0"
|
|
},
|
|
"build": {
|
|
"appId": "com.veza.desktop",
|
|
"productName": "Veza Desktop",
|
|
"directories": {
|
|
"output": "dist-electron"
|
|
},
|
|
"files": [
|
|
"dist/**/*",
|
|
"dist/electron/**/*",
|
|
"node_modules/**/*"
|
|
],
|
|
"mac": {
|
|
"category": "public.app-category.music",
|
|
"icon": "assets/icon.icns",
|
|
"target": [
|
|
{
|
|
"target": "dmg",
|
|
"arch": [
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"win": {
|
|
"icon": "assets/icon.ico",
|
|
"target": [
|
|
{
|
|
"target": "nsis",
|
|
"arch": [
|
|
"x64"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"linux": {
|
|
"icon": "assets/icon.png",
|
|
"target": [
|
|
{
|
|
"target": "AppImage",
|
|
"arch": [
|
|
"x64"
|
|
]
|
|
}
|
|
],
|
|
"category": "AudioVideo"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"createDesktopShortcut": true,
|
|
"createStartMenuShortcut": true
|
|
},
|
|
"dmg": {
|
|
"title": "Veza Desktop Installer",
|
|
"icon": "assets/icon.icns"
|
|
},
|
|
"publish": {
|
|
"provider": "github",
|
|
"releaseType": "release"
|
|
}
|
|
}
|
|
} |