package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. {
  2. "name": "westeroscraftlauncher",
  3. "version": "1.2.0",
  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": "cross-env 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.13",
  29. "async": "^2.6.1",
  30. "discord-rpc": "discordjs/RPC",
  31. "ejs": "^2.6.1",
  32. "ejs-electron": "^2.0.3",
  33. "electron-updater": "^4.0.4",
  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. "cross-env": "^5.2.0",
  45. "electron": "^3.0.10",
  46. "electron-builder": "^20.36.2",
  47. "eslint": "^5.9.0"
  48. },
  49. "repository": {
  50. "type": "git",
  51. "url": "git+https://github.com/WesterosCraftCode/ElectronLauncher.git"
  52. },
  53. "build": {
  54. "appId": "westeroscraftlauncher",
  55. "productName": "WesterosCraft Launcher",
  56. "artifactName": "${productName}.${ext}",
  57. "copyright": "Copyright © 2018 WesterosCraft",
  58. "directories": {
  59. "buildResources": "build",
  60. "output": "dist"
  61. },
  62. "win": {
  63. "target": [
  64. {
  65. "target": "nsis",
  66. "arch": "x64"
  67. }
  68. ],
  69. "icon": "build/icon.ico"
  70. },
  71. "nsis": {
  72. "oneClick": false,
  73. "perMachine": true,
  74. "allowElevation": true,
  75. "installerIcon": "build/icon.ico",
  76. "uninstallerIcon": "build/icon.ico"
  77. },
  78. "mac": {
  79. "target": "dmg",
  80. "category": "public.app-category.games",
  81. "icon": "build/icon.icns"
  82. },
  83. "linux": {
  84. "target": "AppImage",
  85. "maintainer": "Daniel Scalzi",
  86. "vendor": "WesterosCraft",
  87. "synopsis": "Custom Launcher for WesterosCraft",
  88. "description": "Custom launcher which allows users to join WesterosCraft. All mods, configurations, and updates are handled automatically.",
  89. "category": "Game"
  90. },
  91. "deb": {
  92. "compression": "xz",
  93. "packageCategory": "Games",
  94. "priority": "optional"
  95. },
  96. "compression": "maximum",
  97. "files": [
  98. "!{dist,.gitignore,.vscode,docs,dev-app-update.yml,.travis.yml,.nvmrc,.eslintrc.scripts.json,.eslintrc.json}"
  99. ],
  100. "extraResources": [
  101. "libraries"
  102. ],
  103. "asar": true
  104. }
  105. }