123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- {
- "name": "hot-update-tools",
- "version": "1.0.4",
- "description": "hotUpdateTools",
- "author": "xu_yanfeng",
- "main": "main.js",
- "scripts": {
- "pack": "node ./pack.js"
- },
- "main-menu": {
- "i18n:MAIN_MENU.project.title/i18n:hot-update-tools.title": {
- "icon": "icon.png",
- "accelerator": "CmdOrCtrl+u",
- "message": "hot-update-tools:showPanel"
- }
- },
- "panel": {
- "main": "panel/index.js",
- "type": "dockable",
- "title": "bundle热更工具",
- "width": 900,
- "height": 900,
- "min-height": 400,
- "min-width": 550
- },
- "dependencies": {
- "@types/fs-extra": "^9.0.1",
- "ali-oss": "^4.11.4",
- "jszip": "^3.1.5",
- "node-localstorage": "^1.3.1",
- "nodemailer": "^4.4.1",
- "universal-analytics": "^0.4.20",
- "uuid": "^3.3.2"
- },
- "devDependencies": {
- "husky": "^3.1.0",
- "lint-staged": "^11.2.3",
- "eslint": "7.32.0",
- "cc-plugin-packer": "file:../../../cc-plugin-packer"
- },
- "husky": {
- "hooks": {
- "pre-commit": "lint-staged --allow-empty"
- }
- },
- "lint-staged": {
- "**/*.{js}": [
- "eslint --fix"
- ]
- }
- }
|