You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.4 KiB

8 years ago
8 years ago
  1. {
  2. "private": true,
  3. "engines": {
  4. "node": ">=6"
  5. },
  6. "name": "ariang-native",
  7. "version": "0.4.0",
  8. "description": "AriaNg Native App",
  9. "main": "app.js",
  10. "scripts": {
  11. "postinstall": "install-app-deps",
  12. "clean": "rimraf dist",
  13. "start": "electron .",
  14. "publish:win": "npm run clean && build --ia32",
  15. "publish:osx": "npm run clean && build --mac"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/mayswind/AriaNg-Native.git"
  20. },
  21. "keywords": [
  22. "aria2",
  23. "AriaNg",
  24. "Native",
  25. "Frontend"
  26. ],
  27. "author": "MaysWind <i@mayswind.net>",
  28. "license": "MIT",
  29. "bugs": {
  30. "url": "https://github.com/mayswind/AriaNg-Native/issues"
  31. },
  32. "homepage": "http://ariang.mayswind.net/",
  33. "devDependencies": {
  34. "del": "^3.0.0",
  35. "electron": "^1.6.2",
  36. "electron-builder": "^20.0.8",
  37. "rimraf": "^2.6.2"
  38. },
  39. "dependencies": {
  40. "electron-localshortcut": "^3.1.0"
  41. },
  42. "build": {
  43. "appId": "net.mayswind.ariang",
  44. "productName": "AriaNg",
  45. "copyright": "Copyright (c) 2017 MaysWind (i@mayswind.net)",
  46. "files": [
  47. "app/**",
  48. "assets/**",
  49. "app.js",
  50. "package.json"
  51. ],
  52. "win": {
  53. "icon": "assets/AriaNg.ico",
  54. "target": "portable"
  55. },
  56. "mac": {
  57. "category": "public.app-category.utilities",
  58. "icon": "assets/AriaNg.icns",
  59. "target": "dmg"
  60. },
  61. "dmg": {
  62. "icon": "assets/AriaNg.icns"
  63. }
  64. }
  65. }