mirror of
https://github.com/sahadev/vue-component-creater-ui.git
synced 2025-06-06 13:04:05 +08:00
112 lines
3.2 KiB
JSON
112 lines
3.2 KiB
JSON
{
|
|
"name": "lcg-vcc",
|
|
"description": "Low Code Generator -> Vue Component Creater",
|
|
"version": "0.5.3",
|
|
"private": false,
|
|
"keywords": [
|
|
"low-code",
|
|
"editor"
|
|
],
|
|
"main": "./dist/vcc.umd.min.js",
|
|
"scripts": {
|
|
"dev": "vite --port 8008",
|
|
"serve": "vue-cli-service serve --open --port 8008",
|
|
"build:release": "vue-cli-service build",
|
|
"build": "vue-cli-service build --report --target lib --name vcc './src/components-v2/VCC.vue' && node ./src/script/distClear.js",
|
|
"build:win": "vue-cli-service build --report --target lib --name vcc ./src/components-v2/VCC.vue && node ./src/script/distClear.js",
|
|
"compileAndbuild:dev": "npm run compileComponent && vue-cli-service build",
|
|
"lint": "vue-cli-service lint",
|
|
"build:prod": "vue-cli-service build --mode production",
|
|
"compileAndBuild:prod": "npm run compileComponent && vue-cli-service build --mode production",
|
|
"compileComponent": "node ./src/script/compile.js",
|
|
"debugParser": "node ./src/test/parserJsCode.js"
|
|
},
|
|
"dependencies": {
|
|
"@babel/parser": "^7.11.5",
|
|
"@originjs/vite-plugin-require-context": "^1.0.9",
|
|
"@vitejs/plugin-vue": "^1.10.0",
|
|
"@vue/compat": "^3.2.22",
|
|
"@vue/compiler-sfc": "^3.2.22",
|
|
"axios": "^0.21.4",
|
|
"copy-to-clipboard": "^3.3.1",
|
|
"core-js": "^3.6.4",
|
|
"crypto-random-string": "^3.3.0",
|
|
"css": "^3.0.0",
|
|
"element-plus": "^1.2.0-beta.3",
|
|
"escodegen": "^2.0.0",
|
|
"espree": "^7.3.0",
|
|
"eventemitter3": "^4.0.7",
|
|
"fast-xml-parser": "^3.17.4",
|
|
"file-saver": "^2.0.2",
|
|
"fs-extra": "^9.0.1",
|
|
"get-own-enumerable-property-symbols": "^3.0.2",
|
|
"glob": "^7.1.6",
|
|
"html2canvas": "^1.0.0-rc.7",
|
|
"is-absolute-url": "^3.0.3",
|
|
"keymaster": "^1.6.2",
|
|
"lodash-es": "^4.17.21",
|
|
"md5": "^2.3.0",
|
|
"modern-normalize": "^1.0.0",
|
|
"object-inspect": "^1.11.0",
|
|
"parse-package-name": "^0.1.0",
|
|
"prettier": "^2.4.0",
|
|
"prismjs": "^1.20.0",
|
|
"query-string": "^6.13.7",
|
|
"register-service-worker": "^1.6.2",
|
|
"split.js": "^1.6.2",
|
|
"vant": "^2.10.7",
|
|
"view-design": "^4.3.2",
|
|
"vite": "^2.6.14",
|
|
"vue": "^3.2.22",
|
|
"vue-codemirror": "^4.0.6",
|
|
"vue-nestable": "^2.6.0",
|
|
"vue-router": "^3.4.9",
|
|
"vuex": "^3.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/generator": "^7.11.6",
|
|
"@vue/cli-plugin-babel": "^4.2.0",
|
|
"@vue/cli-plugin-eslint": "^4.2.0",
|
|
"@vue/cli-plugin-pwa": "^4.2.0",
|
|
"@vue/cli-service": "^4.2.0",
|
|
"@vue/eslint-config-airbnb": "^5.0.2",
|
|
"babel-eslint": "^10.0.3",
|
|
"eslint": "^6.7.2",
|
|
"eslint-plugin-import": "^2.20.1",
|
|
"eslint-plugin-vue": "^6.1.2",
|
|
"iview-loader": "^1.3.0",
|
|
"lint-staged": "^9.5.0",
|
|
"sass": "^1.25.0",
|
|
"sass-loader": "^8.0.2",
|
|
"vue-template-compiler": "^2.6.14",
|
|
"is-obj": "^3.0.0",
|
|
"is-regexp": "^3.0.0"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"plugin:vue/essential"
|
|
],
|
|
"parserOptions": {
|
|
"parser": "babel-eslint"
|
|
},
|
|
"rules": {}
|
|
},
|
|
"browserslist": [
|
|
"> 1%",
|
|
"last 2 versions"
|
|
],
|
|
"gitHooks": {
|
|
"pre-commit": "lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,vue}": [
|
|
"vue-cli-service lint",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|