invalid w
2024-01-06 445ea238fb0c9d60ea51c4cc3dc99fe1d41d5faa
提交 | 用户 | age
2f6253 1 {
de5bf7 2   "name": "vben-admin",
fa5803 3   "version": "2.10.1",
5e9946 4   "homepage": "https://github.com/vbenjs/vue-vben-admin",
ab7448 5   "bugs": {
5e9946 6     "url": "https://github.com/vbenjs/vue-vben-admin/issues"
ab7448 7   },
V 8   "repository": {
9     "type": "git",
5e9946 10     "url": "git+https://github.com/vbenjs/vue-vben-admin.git"
ab7448 11   },
V 12   "license": "MIT",
e15737 13   "author": {
V 14     "name": "vben",
15     "email": "anncwb@126.com",
16     "url": "https://github.com/anncwb"
17   },
e6c7b5 18   "type": "module",
2f6253 19   "scripts": {
999965 20     "bootstrap": "pnpm install",
6e716c 21     "build": "cross-env NODE_ENV=production NODE_OPTIONS=--max-old-space-size=8192 pnpm vite build",
22     "build:analyze": "cross-env NODE_OPTIONS=--max-old-space-size=8192 pnpm vite build --mode analyze",
c659c1 23     "build:docker": "vite build --mode docker",
b5bdb5 24     "build:no-cache": "pnpm store prune && npm run build",
6e716c 25     "build:test": "cross-env NODE_OPTIONS=--max-old-space-size=8192 pnpm vite build --mode test",
ba2415 26     "commit": "czg",
5e9946 27     "dev": "pnpm vite",
ba2415 28     "preinstall": "npx only-allow pnpm",
V 29     "postinstall": "turbo run stub",
5e4be0 30     "lint": "turbo run lint",
f6fe1d 31     "lint:eslint": "eslint --cache --max-warnings 0  \"{src,mock}/**/*.{vue,ts,tsx}\" --fix",
5e9946 32     "lint:prettier": "prettier --write .",
c6e135 33     "lint:stylelint": "stylelint \"**/*.{vue,css,less,scss}\" --fix --cache --cache-location node_modules/.cache/stylelint/",
81cf44 34     "prepare": "husky install",
ba2415 35     "preview": "npm run build && vite preview",
V 36     "reinstall": "rimraf pnpm-lock.yaml && rimraf package.lock.json && rimraf node_modules && npm run bootstrap",
37     "serve": "npm run dev",
38     "test:gzip": "npx http-server dist --cors --gzip -c-1",
39     "type:check": "vue-tsc --noEmit --skipLibCheck"
ab7448 40   },
V 41   "lint-staged": {
42     "*.{js,jsx,ts,tsx}": [
ba2415 43       "prettier --write",
V 44       "eslint --fix"
ab7448 45     ],
V 46     "{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [
47       "prettier --write--parser json"
48     ],
49     "package.json": [
50       "prettier --write"
51     ],
52     "*.vue": [
53       "prettier --write",
ba2415 54       "eslint --fix",
ab7448 55       "stylelint --fix"
V 56     ],
57     "*.{scss,less,styl,html}": [
ba2415 58       "prettier --write",
V 59       "stylelint --fix"
ab7448 60     ],
V 61     "*.md": [
62       "prettier --write"
63     ]
64   },
65   "config": {
66     "commitizen": {
67       "path": "node_modules/cz-git"
68     }
69   },
2f6253 70   "dependencies": {
626c54 71     "@ant-design/icons-vue": "^7.0.1",
1262e1 72     "@iconify/iconify": "^3.1.1",
626c54 73     "@logicflow/core": "^1.2.18",
X 74     "@logicflow/extension": "^1.2.19",
279977 75     "@vben/hooks": "workspace:*",
e6c7b5 76     "@vue/shared": "^3.4.5",
626c54 77     "@vueuse/core": "^10.7.1",
X 78     "@zxcvbn-ts/core": "^3.0.4",
445ea2 79     "ant-design-vue": "^4.1.0",
e6c7b5 80     "axios": "^1.6.4",
626c54 81     "codemirror": "^5.65.16",
X 82     "cropperjs": "^1.6.1",
83     "crypto-js": "^4.2.0",
182b4f 84     "dayjs": "^1.11.10",
626c54 85     "driver.js": "^1.3.1",
X 86     "echarts": "^5.4.3",
87     "exceljs": "^4.4.0",
9a7102 88     "lodash-es": "^4.17.21",
2f6253 89     "mockjs": "^1.1.0",
90     "nprogress": "^0.2.0",
84a5fc 91     "path-to-regexp": "^6.2.1",
626c54 92     "pinia": "2.1.7",
X 93     "pinia-plugin-persistedstate": "^3.2.1",
2f9989 94     "print-js": "^1.6.0",
1262e1 95     "qrcode": "^1.5.3",
X 96     "qs": "^6.11.2",
cdb10c 97     "resize-observer-polyfill": "^1.5.1",
9d4d78 98     "showdown": "^2.1.0",
626c54 99     "sortablejs": "^1.15.1",
X 100     "tinymce": "^5.10.9",
101     "unocss": "0.58.3",
102     "vditor": "^3.9.8",
e6c7b5 103     "vue": "^3.4.5",
626c54 104     "vue-i18n": "^9.8.0",
X 105     "vue-json-pretty": "^2.3.0",
106     "vue-router": "^4.2.5",
107     "vue-types": "^5.1.1",
ab7448 108     "vuedraggable": "^4.1.0",
626c54 109     "vxe-table": "^4.5.17",
X 110     "vxe-table-plugin-export-xlsx": "^3.1.0",
111     "xe-utils": "^3.5.14",
ab7448 112     "xlsx": "^0.18.5"
2f6253 113   },
114   "devDependencies": {
e6c7b5 115     "@commitlint/cli": "^18.4.4",
X 116     "@commitlint/config-conventional": "^18.4.4",
117     "@iconify/json": "^2.2.164",
626c54 118     "@purge-icons/generated": "^0.10.0",
X 119     "@types/codemirror": "^5.60.15",
120     "@types/crypto-js": "^4.2.1",
121     "@types/lodash-es": "^4.17.12",
122     "@types/mockjs": "^1.0.10",
123     "@types/nprogress": "^0.2.3",
124     "@types/qrcode": "^1.5.5",
125     "@types/qs": "^6.9.11",
126     "@types/showdown": "^2.0.6",
127     "@types/sortablejs": "^1.15.7",
ba2415 128     "@vben/eslint-config": "workspace:*",
V 129     "@vben/stylelint-config": "workspace:*",
08d4e3 130     "@vben/ts-config": "workspace:*",
14ba72 131     "@vben/types": "workspace:*",
5e9946 132     "@vben/vite-config": "workspace:*",
e6c7b5 133     "@vue/compiler-sfc": "^3.4.5",
626c54 134     "@vue/test-utils": "^2.4.3",
c303ec 135     "cross-env": "^7.0.3",
626c54 136     "cz-git": "^1.8.0",
X 137     "czg": "^1.8.0",
84a5fc 138     "husky": "^8.0.3",
626c54 139     "lint-staged": "15.2.0",
X 140     "prettier": "^3.1.1",
141     "prettier-plugin-packagejson": "^2.4.8",
142     "rimraf": "^5.0.5",
e6c7b5 143     "turbo": "^1.11.3",
626c54 144     "typescript": "^5.3.3",
X 145     "unbuild": "^2.0.0",
e6c7b5 146     "vite": "^5.0.10",
ae09d3 147     "vite-plugin-mock": "^2.9.6",
626c54 148     "vue-tsc": "^1.8.27"
2f6253 149   },
626c54 150   "packageManager": "pnpm@8.10.0",
2f6253 151   "engines": {
626c54 152     "node": ">=18.12.0",
X 153     "pnpm": ">=8.10.0"
2f6253 154   }
155 }