mirror of
https://github.com/rubickCenter/rubick
synced 2026-02-25 16:34:36 +08:00
新增本地插件导入功能,支持通过本地文件或远程URL导入插件配置。添加了新的路由、页面组件及多语言支持,并扩展了插件存储逻辑以区分本地插件。同时更新了Ant Design组件注册以支持新功能所需的UI组件。
47 lines
933 B
JSON
47 lines
933 B
JSON
{
|
|
"name": "guide",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"serve": "vue-cli-service serve --port 8084",
|
|
"build": "vue-cli-service build",
|
|
"lint": "vue-cli-service lint"
|
|
},
|
|
"dependencies": {
|
|
"core-js": "^3.8.3",
|
|
"vue": "^3.2.13"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.12.16",
|
|
"@babel/eslint-parser": "^7.12.16",
|
|
"@vue/cli-plugin-babel": "~5.0.0",
|
|
"@vue/cli-plugin-eslint": "~5.0.0",
|
|
"@vue/cli-service": "~5.0.0",
|
|
"eslint": "^7.32.0",
|
|
"eslint-plugin-vue": "^8.0.3"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"plugin:vue/vue3-essential",
|
|
"eslint:recommended"
|
|
],
|
|
"parserOptions": {
|
|
"parser": "@babel/eslint-parser"
|
|
},
|
|
"rules": {}
|
|
},
|
|
"browserslist": [
|
|
"> 1%",
|
|
"last 2 versions",
|
|
"not dead",
|
|
"not ie 11"
|
|
],
|
|
"volta": {
|
|
"node": "16.20.2"
|
|
}
|
|
}
|