package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. {
  2. "name": "liveme-pro-tools",
  3. "version": "1.104.20180417",
  4. "description": "Tools for Live.me video network",
  5. "homepage": "https://github.com/thecoder75/liveme-pro-tools/",
  6. "main": "index.js",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/thecoder75/liveme-pro-tools"
  10. },
  11. "scripts": {
  12. "postinstall": "",
  13. "start": "./node_modules/.bin/electron . --enable-logging",
  14. "dev": "NODE_ENV='development' npm run start",
  15. "release-appveyor": "build --publish always",
  16. "release-travis": "build --publish always",
  17. "release": "build --publish always"
  18. },
  19. "author": "TheCoder75",
  20. "license": "GPL-3.0",
  21. "build": {
  22. "appId": "com.thecoderstoolbox.livemeprotools",
  23. "productName": "LiveMe Pro Tools",
  24. "artifactName": "${productName}-${version}-${arch}.${ext}",
  25. "asar": true,
  26. "compression": "maximum",
  27. "linux": {
  28. "target": [
  29. {
  30. "target": "tar.gz",
  31. "arch": [
  32. "x64",
  33. "ia32"
  34. ]
  35. }
  36. ],
  37. "category": "Network",
  38. "description": "Browse, search and manage accounts, replays and more without the need of an actual account on Live.me.",
  39. "maintainer": "thecoder1975@gmail.com"
  40. },
  41. "win": {
  42. "target": [
  43. {
  44. "target": "nsis",
  45. "arch": [
  46. "x64",
  47. "ia32"
  48. ]
  49. }
  50. ],
  51. "icon": "build/appicon.ico"
  52. },
  53. "nsis": {
  54. "oneClick": false,
  55. "allowToChangeInstallationDirectory": true,
  56. "perMachine": true
  57. },
  58. "mac": {
  59. "category": "public.app-category.video",
  60. "target": [
  61. "dmg"
  62. ],
  63. "identity": null,
  64. "icon": "build/appicon.icns"
  65. },
  66. "publish": [
  67. {
  68. "provider": "github",
  69. "vPrefixedTagName": true,
  70. "releaseType": "release"
  71. }
  72. ]
  73. },
  74. "dependencies": {
  75. "async": "^2.6.0",
  76. "axios": "^0.17.1",
  77. "electron-is-dev": "^0.3.0",
  78. "electron-settings": "^3.1.4",
  79. "fluent-ffmpeg": "^2.1.2",
  80. "format-duration": "^1.0.0",
  81. "hlsdownloader": "^2.1.0",
  82. "liveme-api": "^1.2.6",
  83. "pretty-date": "^0.2.0",
  84. "request": "^2.83.0",
  85. "shelljs": "^0.8.1",
  86. "tar-fs": "^1.16.0"
  87. },
  88. "devDependencies": {
  89. "electron": "^1.8.2",
  90. "electron-builder": "^19.56.0"
  91. }
  92. }