package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "beatdrop",
  3. "description": "A desktop app for downloading Beat Saber songs.",
  4. "author": "Nathaniel Johns (StarGazer1258)",
  5. "version": "2.1.6",
  6. "private": false,
  7. "license": "CC-BY-NC-SA-4.0",
  8. "repository": {
  9. "type": "git",
  10. "url": "https://github.com/StarGazer1258/BeatDrop.git"
  11. },
  12. "dependencies": {
  13. "@sentry/electron": "^0.15.0",
  14. "adm-zip": "^0.4.13",
  15. "electron-is-dev": "^0.3.0",
  16. "electron-log": "^2.2.17",
  17. "electron-updater": "4.0.5",
  18. "get-image-colors": "^1.8.1",
  19. "md5": "^2.2.1",
  20. "node-sass": "^4.11.0",
  21. "original-fs": "^1.0.0",
  22. "react": "16.4.0",
  23. "react-contextmenu": "^2.10.0",
  24. "react-dom": "16.4.0",
  25. "react-linkify": "^0.2.2",
  26. "react-redux": "^6.0.0",
  27. "redux": "^4.0.1",
  28. "redux-persist": "^5.10.0",
  29. "redux-thunk": "^2.3.0",
  30. "remarkable": "^1.7.1",
  31. "rimraf": "^2.6.2",
  32. "sortablejs": "^1.8.0-rc1",
  33. "walker": "^1.0.7"
  34. },
  35. "devDependencies": {
  36. "concurrently": "3.5.1",
  37. "cross-env": "5.1.6",
  38. "electron": "3.0.10",
  39. "electron-builder": "20.38.1",
  40. "electron-devtools-installer": "^2.2.4",
  41. "prettier": "^1.4.4",
  42. "react-scripts": "2.1.2",
  43. "wait-on": "2.1.0"
  44. },
  45. "main": "public/electron.js",
  46. "homepage": "./",
  47. "scripts": {
  48. "test": "jest",
  49. "build": "react-scripts build && electron-builder --win",
  50. "publish": "react-scripts build && electron-builder --win -p always",
  51. "build-portable": "react-scripts build && electron-builder --win portable",
  52. "start": "concurrently \"cross-env BROWSER=none react-scripts start\" \"wait-on http://localhost:3000 && electron .\""
  53. },
  54. "build": {
  55. "generateUpdatesFilesForAllChannels": true,
  56. "nsis": {
  57. "allowToChangeInstallationDirectory": true,
  58. "artifactName": "BeatDrop ${version} Setup.${ext}",
  59. "oneClick": false,
  60. "perMachine": false,
  61. "shortcutName": "BeatDrop"
  62. },
  63. "directories": {
  64. "buildResources": "resources"
  65. },
  66. "win": {
  67. "publish": {
  68. "provider": "github",
  69. "owner": "StarGazer1258",
  70. "private": true,
  71. "token": "***REMOVED***"
  72. },
  73. "protocols": {
  74. "name": "BeatDrop Protocol",
  75. "schemes": [
  76. "beatdrop"
  77. ]
  78. }
  79. }
  80. },
  81. "browserslist": [
  82. "electron >= 3.0.10"
  83. ]
  84. }