package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "name": "beatdrop",
  3. "description": "A desktop app for downloading Beat Saber songs.",
  4. "author": "Nathaniel Johns (StarGazer1258)",
  5. "version": "2.6.2",
  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. "adm-zip": "^0.4.13",
  14. "electron-is-dev": "^0.3.0",
  15. "electron-log": "^2.2.17",
  16. "electron-updater": "4.0.5",
  17. "get-image-colors": "^1.8.1",
  18. "md5": "^2.2.1",
  19. "node-sass": "^4.12.0",
  20. "original-fs": "^1.0.0",
  21. "react": "16.4.0",
  22. "react-contextmenu": "^2.10.0",
  23. "react-dom": "16.4.0",
  24. "react-linkify": "^0.2.2",
  25. "react-redux": "^6.0.0",
  26. "redux": "^4.0.1",
  27. "redux-persist": "^5.10.0",
  28. "redux-thunk": "^2.3.0",
  29. "remarkable": "^1.7.1",
  30. "rimraf": "^2.6.2",
  31. "semver": "^6.3.0",
  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. },
  70. "protocols": {
  71. "name": "BeatDrop Protocol",
  72. "schemes": [
  73. "beatdrop"
  74. ]
  75. }
  76. },
  77. "fileAssociations": [
  78. {
  79. "ext": "bplist",
  80. "name": "Playlist",
  81. "description": "Beat Saber Playlist",
  82. "icon": "resources/bplist.ico"
  83. }
  84. ]
  85. },
  86. "browserslist": [
  87. "electron >= 3.0.10"
  88. ]
  89. }