package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "liveme-pro-tools",
  3. "version": "1.220.20181221",
  4. "description": "Tools for Live.me video network",
  5. "homepage": "https://notabug.org/thecoder1975/liveme-pro-tools",
  6. "main": "src/electron/index.js",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://notabug.org/thecoder1975/liveme-pro-tools"
  10. },
  11. "scripts": {
  12. "postinstall": "cd src/electron && npm install",
  13. "start": "./node_modules/.bin/electron ./src/electron/index.js --enable-logging",
  14. "dev": "NODE_ENV='development' npm run start",
  15. "release": "build -w && build -l && build -m",
  16. "release-win": "build -w",
  17. "release-linux": "build -m"
  18. },
  19. "author": "TheCoder75",
  20. "license": "GPL-3.0",
  21. "build": {
  22. "appId": "com.thecoderstoolbox.livemeprotools",
  23. "files": [
  24. "**/*",
  25. "node_modules/**/*"
  26. ],
  27. "directories": {
  28. "output": "./dist",
  29. "app": "./src/electron"
  30. },
  31. "productName": "LiveMe Pro Tools",
  32. "artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
  33. "asar": true,
  34. "compression": "maximum",
  35. "linux": {
  36. "target": [
  37. {
  38. "target": "tar.gz",
  39. "arch": [
  40. "x64",
  41. "ia32"
  42. ]
  43. }
  44. ],
  45. "category": "Network",
  46. "description": "Browse, search and manage accounts, replays and more without the need of an actual account on Live.me.",
  47. "maintainer": "thecoder1975@gmail.com"
  48. },
  49. "win": {
  50. "target": [
  51. {
  52. "target": "zip",
  53. "arch": [
  54. "x64",
  55. "ia32"
  56. ]
  57. }
  58. ],
  59. "icon": "src/electron/build/appicon.ico"
  60. },
  61. "nsis": {
  62. "oneClick": false,
  63. "allowToChangeInstallationDirectory": true,
  64. "perMachine": true
  65. },
  66. "mac": {
  67. "category": "public.app-category.video",
  68. "target": [
  69. "zip"
  70. ],
  71. "identity": null,
  72. "icon": "src/electron/build/appicon.icns"
  73. }
  74. },
  75. "devDependencies": {
  76. "electron": "^1.8.6",
  77. "electron-builder": "^19.56.0"
  78. }
  79. }