package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "name": "liveme-pro-tools",
  3. "version": "1.209.20180918",
  4. "description": "Tools for Live.me video network",
  5. "homepage": "https://notabug.org/thecoder1975/liveme-pro-tools",
  6. "main": "index.js",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://notabug.org/thecoder1975/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": "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. "productName": "LiveMe Pro Tools",
  24. "artifactName": "${productName}-${version}-${os}-${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": "zip",
  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. "zip"
  62. ],
  63. "identity": null,
  64. "icon": "build/appicon.icns"
  65. }
  66. },
  67. "dependencies": {
  68. "async": "^2.6.0",
  69. "axios": "^0.17.1",
  70. "electron-is-dev": "^0.3.0",
  71. "electron-settings": "^3.1.4",
  72. "fluent-ffmpeg": "^2.1.2",
  73. "format-duration": "^1.0.0",
  74. "hlsdownloader": "^2.1.0",
  75. "pretty-date": "^0.2.0",
  76. "request": "^2.83.0",
  77. "request-promise-native": "^1.0.5",
  78. "shelljs": "^0.8.2",
  79. "tar-fs": "^1.16.2"
  80. },
  81. "devDependencies": {
  82. "electron": "^1.8.6",
  83. "electron-builder": "^19.56.0",
  84. "eslint": "^4.19.1",
  85. "eslint-config-standard": "^11.0.0",
  86. "eslint-plugin-import": "^2.11.0",
  87. "eslint-plugin-node": "^6.0.1",
  88. "eslint-plugin-promise": "^3.7.0",
  89. "eslint-plugin-standard": "^3.1.0"
  90. }
  91. }