118 lines
No EOL
3 KiB
JSON
118 lines
No EOL
3 KiB
JSON
{
|
|
"name": "veza-desktop",
|
|
"version": "1.0.0",
|
|
"description": "Application desktop Veza - Plateforme de streaming et collaboration musicale",
|
|
"main": "dist/main/main.js",
|
|
"scripts": {
|
|
"dev": "concurrently \"npm run dev:renderer\" \"npm run dev:main\"",
|
|
"dev:renderer": "vite",
|
|
"dev:main": "tsc -p tsconfig.main.json && electron .",
|
|
"build": "npm run build:renderer && npm run build:main",
|
|
"build:renderer": "vite build",
|
|
"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 .",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"lint": "eslint src --ext .ts,.tsx",
|
|
"lint:fix": "eslint src --ext .ts,.tsx --fix"
|
|
},
|
|
"keywords": [
|
|
"electron",
|
|
"veza",
|
|
"streaming",
|
|
"music",
|
|
"collaboration",
|
|
"desktop"
|
|
],
|
|
"author": "Veza Team",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^18.0.0",
|
|
"@types/react": "^18.0.0",
|
|
"@types/react-dom": "^18.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.0.0",
|
|
"@typescript-eslint/parser": "^5.0.0",
|
|
"@vitejs/plugin-react": "^3.0.0",
|
|
"concurrently": "^7.0.0",
|
|
"electron": "^25.0.0",
|
|
"electron-builder": "^24.0.0",
|
|
"eslint": "^8.0.0",
|
|
"eslint-plugin-react": "^7.0.0",
|
|
"eslint-plugin-react-hooks": "^4.0.0",
|
|
"jest": "^29.0.0",
|
|
"typescript": "^4.9.0",
|
|
"vite": "^4.0.0"
|
|
},
|
|
"dependencies": {
|
|
"react": "^18.0.0",
|
|
"react-dom": "^18.0.0",
|
|
"react-redux": "^8.0.0",
|
|
"@reduxjs/toolkit": "^1.9.0",
|
|
"react-router-dom": "^6.0.0",
|
|
"socket.io-client": "^4.0.0",
|
|
"axios": "^1.0.0",
|
|
"electron-store": "^8.1.0",
|
|
"electron-updater": "^6.0.0",
|
|
"node-abi": "^3.0.0"
|
|
},
|
|
"build": {
|
|
"appId": "com.veza.desktop",
|
|
"productName": "Veza Desktop",
|
|
"directories": {
|
|
"output": "dist-electron"
|
|
},
|
|
"files": [
|
|
"dist/**/*",
|
|
"dist/main.js",
|
|
"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"
|
|
}
|
|
}
|
|
} |