feat: 限制包管理器为pnpm和node版本16+

Former-commit-id: 3e4a21a9e79c32fc6bea5964a98195dade31f340
This commit is contained in:
april
2023-06-14 17:46:42 +08:00
parent 1777ce307d
commit eed20ce145

View File

@@ -4,6 +4,7 @@
"version": "2.3.1",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "vite serve --mode development",
"build:prod": "vite build --mode production &&vue-tsc --noEmit",
"prepare": "husky install",
@@ -101,5 +102,8 @@
},
"repository": "https://gitee.com/youlaiorg/vue3-element-admin.git",
"author": "有来开源组织",
"license": "MIT"
"license": "MIT",
"engines": {
"node": ">=16.0.0"
}
}