package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "westeroscraftlauncher",
  3. "version": "0.0.1",
  4. "description": "Custom modded launcher for Westeroscraft",
  5. "productName": "WesterosCraft Launcher",
  6. "main": "index.js",
  7. "scripts": {
  8. "start": "electron index.js",
  9. "dist": "SET ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES=true & electron-builder",
  10. "dist:win": "npm run dist -- --win --x64",
  11. "dist:mac": "npm run dist -- --mac",
  12. "dist:linux": "npm run dist -- --linux --x64",
  13. "dist:all": "npm run dist -- -wl --x64"
  14. },
  15. "engines": {
  16. "node": "8.11.x"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://gitlab.com/westeroscraft/electronlauncher.git"
  21. },
  22. "author": "Daniel Scalzi",
  23. "license": "AGPL-3.0",
  24. "bugs": {
  25. "url": "https://gitlab.com/westeroscraft/electronlauncher/issues"
  26. },
  27. "homepage": "http://www.westeroscraft.com/",
  28. "dependencies": {
  29. "adm-zip": "^0.4.7",
  30. "async": "^2.6.0",
  31. "discord-rpc": "^3.0.0-beta.10",
  32. "ejs": "^2.5.7",
  33. "ejs-electron": "^2.0.1",
  34. "jquery": "^3.3.1",
  35. "request-promise-native": "^1.0.5",
  36. "tar-fs": "^1.16.0",
  37. "uuid": "^3.2.1",
  38. "winreg": "^1.2.4"
  39. },
  40. "devDependencies": {
  41. "electron": "^1.8.4",
  42. "electron-builder": "^20.8.1"
  43. },
  44. "build": {
  45. "appId": "westeroscraftlauncher",
  46. "productName": "WesterosCraft Launcher",
  47. "artifactName": "${productName}.${ext}",
  48. "copyright": "Copyright © 2018 WesterosCraft",
  49. "directories": {
  50. "buildResources": "build",
  51. "output": "dist"
  52. },
  53. "win": {
  54. "target": "portable",
  55. "icon": "build/icon.ico"
  56. },
  57. "mac": {
  58. "target": "dmg",
  59. "category": "public.app-category.games",
  60. "icon": "build/icon.icns",
  61. "type": "distribution"
  62. },
  63. "linux": {
  64. "target": "AppImage",
  65. "maintainer": "Daniel Scalzi",
  66. "vendor": "WesterosCraft",
  67. "synopsis": "Custom modded launcher for WesterosCraft",
  68. "description": "Custom launcher which allows users to join WesterosCraft. All mods, configurations, and updates are handled automatically.",
  69. "category": "Game"
  70. },
  71. "deb": {
  72. "compression": "xz",
  73. "packageCategory": "Games",
  74. "priority": "optional"
  75. },
  76. "compression": "maximum",
  77. "files": [
  78. "!{target,logs,.vscode,docs}"
  79. ],
  80. "asar": true
  81. }
  82. }