package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "license": "GPL-3.0",
  3. "description": "Download music from Deezer",
  4. "homepage": "https://notabug.org/RemixDevs/DeezloaderRemix",
  5. "bugs": "https://notabug.org/RemixDevs/DeezloaderRemix/issues",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://notabug.org/RemixDevs/DeezloaderRemix.git"
  9. },
  10. "devDependencies": {
  11. "cross-env": "^5.1.6",
  12. "electron": "latest",
  13. "electron-builder": "latest"
  14. },
  15. "scripts": {
  16. "dist": "electron-builder",
  17. "pack": "electron-builder --dir",
  18. "start": "cross-env NODE_ENV=development electron ./app",
  19. "postinstall": "electron-builder install-app-deps"
  20. },
  21. "build": {
  22. "appId": "deezloader-rmx",
  23. "productName": "Deezloader Remix",
  24. "linux": {
  25. "target": [
  26. {
  27. "target": "AppImage",
  28. "arch": [
  29. "x64",
  30. "ia32"
  31. ]
  32. }
  33. ],
  34. "category": "Audio"
  35. },
  36. "mac": {
  37. "category": "public.app-category.music"
  38. },
  39. "win": {
  40. "target": [
  41. {
  42. "target": "nsis",
  43. "arch": [
  44. "x64",
  45. "ia32"
  46. ]
  47. },
  48. {
  49. "target": "portable",
  50. "arch": [
  51. "x64",
  52. "ia32"
  53. ]
  54. }
  55. ]
  56. },
  57. "nsis": {
  58. "artifactName": "${productName} ${version} - Setup.${ext}",
  59. "oneClick": false,
  60. "license": "LICENSE",
  61. "allowToChangeInstallationDirectory": true,
  62. "uninstallDisplayName": "${productName} ${version}",
  63. "deleteAppDataOnUninstall": true
  64. },
  65. "portable": {
  66. "artifactName": "${productName} ${version} - Portable.${ext}",
  67. "requestExecutionLevel": "user"
  68. }
  69. }
  70. }