{
	"name": "eslink-ui-test",
	"private": false,
	"version": "0.0.2",
	"scripts": {
		"cz": "npx git-cz",
		"test": "jest",
		"gen": "bash ./scripts/gc.sh",
		"bootstrap": "yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version",
		"gen:version": "node build/gen-version.js",
		"build": "yarn bootstrap && yarn build:lib && yarn build:theme && yarn build:esm-bundle && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd",
		"build:lib": "rimraf lib && webpack --config ./build/webpack.config.js",
		"build:esm-bundle": "rollup --config ./build/rollup.config.bundle.js",
		"build:esm": "node ./build/bincomp.js",
		"build:utils": "cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils",
		"build:locale": "cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale",
		"build:locale-umd": "node ./build/build-locale.js",
		"build:theme": "rimraf packages/theme-chalk/lib && gulp build --gulpfile packages/theme-chalk/gulpfile.js && cp-cli packages/theme-chalk/lib lib/theme-chalk && rimraf packages/theme-chalk/lib",
		"lint": "eslint ./packages --ext .vue,.js,.ts",
		"lint-fix": "eslint --fix ./packages --ext .vue,.js,.ts",
		"prettier": "prettier packages/**/*.{vue,js,ts}",
		"website-build": "rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js",
		"website-dev": "webpack-dev-server --config ./website/webpack.config.js",
		"website-dev:play": "cross-env PLAY_ENV=true yarn website-dev",
		"upgrade:vue": "bash ./scripts/update-versions.sh"
	},
	"peerDependencies": {
		"vue": "^3.0.0"
	},
	"devDependencies": {
		"@babel/cli": "^7.12.1",
		"@babel/core": "^7.11.4",
		"@babel/plugin-proposal-class-properties": "^7.12.1",
		"@babel/plugin-transform-runtime": "^7.12.1",
		"@babel/preset-env": "^7.11.5",
		"@babel/preset-typescript": "^7.10.4",
		"@commitlint/cli": "^9.1.2",
		"@commitlint/config-conventional": "^9.1.2",
		"@prettier/plugin-pug": "^1.13.2",
		"@rollup/plugin-commonjs": "^15.1.0",
		"@rollup/plugin-node-resolve": "^9.0.0",
		"@rollup/plugin-typescript": "^6.0.0",
		"@types/jest": "^26.0.10",
		"@types/lodash": "^4.14.161",
		"@typescript-eslint/eslint-plugin": "^3.10.1",
		"@typescript-eslint/parser": "^3.10.1",
		"@vue/babel-plugin-jsx": "^1.0.0-rc.3",
		"@vue/compiler-sfc": "^3.0.0",
		"@vue/component-compiler-utils": "^3.2.0",
		"@vue/eslint-config-prettier": "^6.0.0",
		"@vue/eslint-config-typescript": "^7.0.0",
		"algoliasearch": "^4.4.0",
		"babel-jest": "^26.3.0",
		"babel-loader": "^8.1.0",
		"babel-plugin-lodash": "^3.3.4",
		"babel-plugin-module-resolver": "^4.0.0",
		"babel-preset-vue": "^2.0.2",
		"chalk": "^4.1.0",
		"cp-cli": "^2.0.0",
		"cross-env": "^7.0.2",
		"css-loader": "^4.2.2",
		"css-minimizer-webpack-plugin": "^1.1.5",
		"cz-conventional-changelog": "^3.3.0",
		"eslint": "^7.18.0",
		"eslint-config-prettier": "^7.1.0",
		"eslint-plugin-prettier": "^3.3.1",
		"eslint-plugin-vue": "^7.5.0",
		"file-loader": "^6.0.0",
		"file-save": "^0.2.0",
		"highlight.js": "^10.1.2",
		"html-webpack-plugin": "^4.3.0",
		"husky": "^4.3.8",
		"import-from": "^3.0.0",
		"jest": "^26.4.2",
		"lerna": "^3.22.1",
		"lint-staged": "^10.5.3",
		"markdown-it": "^11.0.0",
		"markdown-it-anchor": "^5.3.0",
		"markdown-it-chain": "^1.3.0",
		"markdown-it-container": "^3.0.0",
		"mini-css-extract-plugin": "^0.11.2",
		"ora": "^5.1.0",
		"prettier": "^2.2.1",
		"rimraf": "^3.0.2",
		"rollup": "^2.28.2",
		"rollup-plugin-css-only": "^2.1.0",
		"rollup-plugin-terser": "^7.0.2",
		"rollup-plugin-typescript2": "^0.27.3",
		"rollup-plugin-vue": "^6.0.0-beta.11",
		"sass": "^1.26.10",
		"sass-loader": "10.0.1",
		"sinon": "^9.0.3",
		"style-loader": "^1.2.1",
		"thread-loader": "^3.0.1",
		"throttle-debounce": "2.3.0",
		"transliteration": "^2.1.11",
		"ts-loader": "^8.0.3",
		"typescript": "^4.0.2",
		"url-loader": "^4.1.0",
		"vue-jest": "5.0.0-alpha.1",
		"vue-loader": "16.0.0-beta.7",
		"vue-router": "^4.0.0-beta.4",
		"vue-template-compiler": "^2.6.12",
		"webpack": "^4.44.1",
		"webpack-bundle-analyzer": "^3.9.0",
		"webpack-cli": "3",
		"webpack-dev-server": "^3.11.0"
	},
	"config": {
		"commitizen": {
			"path": "./node_modules/cz-conventional-changelog"
		}
	},
	"husky": {
		"hooks": {
			"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
			"pre-commit": "lint-staged"
		}
	},
	"lint-staged": {
		"*.{js,jsx,ts,tsx,html,css,vue,less,scss}": "prettier  --plugin-search-dir ./node_modules --write"
	},
	"workspaces": [
		"packages/*"
	],
	"description": "A Component Library for Vue3.0",
	"repository": {
		"type": "git",
		"url": "http://10.200.1.145/ni.jin.rong/eslink-ui-vue3.git"
	},
	"homepage": "",
	"license": "MIT",
	"dependencies": {
		"@popperjs/core": "^2.4.4",
		"async-validator": "^3.4.0",
		"dayjs": "1.x",
		"element-plus": "^1.0.1-beta.0",
		"es-css-zen": "^0.1.14",
		"lodash": "^4.17.20",
		"mitt": "^2.1.0",
		"normalize-wheel": "^1.0.1",
		"resize-observer-polyfill": "^1.5.1",
		"vue": "^3.0.3"
	},
	"files": [
		"lib",
		"types",
		"packages"
	],
	"main": "lib/index.js",
	"typings": "types/index.d.ts",
	"unpkg": "lib/index.js",
	"style": "lib/theme-chalk/index.css",
	"browserslist": [
		"> 1%",
		"last 2 versions",
		"not ie <= 8"
	],
	"_customHasUsedEsStandard": true
}
