package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. {
  2. "name": "westeroscraftlauncher",
  3. "version": "1.0.5",
  4. "productName": "WesterosCraft Launcher",
  5. "description": "Modded Minecraft Launcher",
  6. "author": "Daniel Scalzi (https://github.com/dscalzi/)",
  7. "license": "UNLICENSED",
  8. "homepage": "https://github.com/WesterosCraftCode/ElectronLauncher",
  9. "bugs": {
  10. "url": "https://github.com/WesterosCraftCode/ElectronLauncher/issues"
  11. },
  12. "private": true,
  13. "main": "index.js",
  14. "scripts": {
  15. "start": "electron index.js",
  16. "cilinux": "electron-builder --linux --win",
  17. "cidarwin": "electron-builder --mac",
  18. "dist": "SET ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES=true & electron-builder",
  19. "dist:win": "npm run dist -- --win --x64",
  20. "dist:mac": "npm run dist -- --mac",
  21. "dist:linux": "npm run dist -- --linux --x64",
  22. "lint": "eslint --config .eslintrc.json --ignore-pattern app/assets/js/scripts/*.js . && eslint --config .eslintrc.scripts.json app/assets/js/scripts"
  23. },
  24. "engines": {
  25. "node": "10.x.x"
  26. },
  27. "dependencies": {
  28. "adm-zip": "^0.4.11",
  29. "async": "^2.6.1",
  30. "discord-rpc": "discordjs/RPC",
  31. "ejs": "^2.6.1",
  32. "ejs-electron": "^2.0.3",
  33. "electron-updater": "^3.2.3",
  34. "github-syntax-dark": "^0.5.0",
  35. "jquery": "^3.3.1",
  36. "mkdirp": "^0.5.1",
  37. "request": "^2.88.0",
  38. "rimraf": "^2.6.2",
  39. "semver": "^5.6.0",
  40. "tar-fs": "^1.16.3",
  41. "winreg": "^1.2.4"
  42. },
  43. "devDependencies": {
  44. "electron": "^3.0.8",
  45. "electron-builder": "^20.34.0",
  46. "eslint": "^5.9.0"
  47. },
  48. "repository": {
  49. "type": "git",
  50. "url": "git+https://github.com/WesterosCraftCode/ElectronLauncher.git"
  51. },
  52. "build": {
  53. "appId": "westeroscraftlauncher",
  54. "productName": "WesterosCraft Launcher",
  55. "artifactName": "${productName}.${ext}",
  56. "copyright": "Copyright © 2018 WesterosCraft",
  57. "directories": {
  58. "buildResources": "build",
  59. "output": "dist"
  60. },
  61. "win": {
  62. "target": [
  63. {
  64. "target": "nsis",
  65. "arch": "x64"
  66. }
  67. ],
  68. "icon": "build/icon.ico"
  69. },
  70. "nsis": {
  71. "oneClick": false,
  72. "perMachine": true,
  73. "allowElevation": true,
  74. "installerIcon": "build/icon.ico",
  75. "uninstallerIcon": "build/icon.ico"
  76. },
  77. "mac": {
  78. "category": "public.app-category.games",
  79. "icon": "build/icon.icns"
  80. },
  81. "linux": {
  82. "target": "AppImage",
  83. "maintainer": "Daniel Scalzi",
  84. "vendor": "WesterosCraft",
  85. "synopsis": "Custom Launcher for WesterosCraft",
  86. "description": "Custom launcher which allows users to join WesterosCraft. All mods, configurations, and updates are handled automatically.",
  87. "category": "Game"
  88. },
  89. "deb": {
  90. "compression": "xz",
  91. "packageCategory": "Games",
  92. "priority": "optional"
  93. },
  94. "compression": "maximum",
  95. "files": [
  96. "!{dist,.gitignore,.vscode,docs,dev-app-update.yml,.travis.yml,.nvmrc,.eslintrc.scripts.json,.eslintrc.json}"
  97. ],
  98. "extraResources": [
  99. "libraries"
  100. ],
  101. "asar": true
  102. }
  103. }