package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "hot-update-tools",
  3. "version": "1.0.4",
  4. "description": "hotUpdateTools",
  5. "author": "xu_yanfeng",
  6. "main": "main.js",
  7. "scripts": {
  8. "pack": "node ./pack.js"
  9. },
  10. "main-menu": {
  11. "i18n:MAIN_MENU.project.title/i18n:hot-update-tools.title": {
  12. "icon": "icon.png",
  13. "accelerator": "CmdOrCtrl+u",
  14. "message": "hot-update-tools:showPanel"
  15. }
  16. },
  17. "panel": {
  18. "main": "panel/index.js",
  19. "type": "dockable",
  20. "title": "bundle热更工具",
  21. "width": 900,
  22. "height": 900,
  23. "min-height": 400,
  24. "min-width": 550
  25. },
  26. "dependencies": {
  27. "@types/fs-extra": "^9.0.1",
  28. "ali-oss": "^4.11.4",
  29. "jszip": "^3.1.5",
  30. "node-localstorage": "^1.3.1",
  31. "nodemailer": "^4.4.1",
  32. "universal-analytics": "^0.4.20",
  33. "uuid": "^3.3.2"
  34. },
  35. "devDependencies": {
  36. "husky": "^3.1.0",
  37. "lint-staged": "^11.2.3",
  38. "eslint": "7.32.0",
  39. "cc-plugin-packer": "file:../../../cc-plugin-packer"
  40. },
  41. "husky": {
  42. "hooks": {
  43. "pre-commit": "lint-staged --allow-empty"
  44. }
  45. },
  46. "lint-staged": {
  47. "**/*.{js}": [
  48. "eslint --fix"
  49. ]
  50. }
  51. }