2020-07-21 18:18:44 +08:00
|
|
|
{
|
2020-07-22 00:35:23 +08:00
|
|
|
"name": "element-plus",
|
2020-09-15 18:25:32 +08:00
|
|
|
"private": true,
|
2020-11-24 15:01:00 +08:00
|
|
|
"version": "1.0.1-alpha.21",
|
2020-07-21 18:18:44 +08:00
|
|
|
"scripts": {
|
2020-08-28 11:44:04 +08:00
|
|
|
"cz": "npx git-cz",
|
2020-07-24 18:58:15 +08:00
|
|
|
"test": "jest",
|
2020-07-24 20:23:14 +08:00
|
|
|
"gen": "bash ./scripts/gc.sh",
|
2020-11-23 09:50:30 +08:00
|
|
|
"bootstrap": "yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version",
|
2020-11-22 21:34:02 +08:00
|
|
|
"gen:version": "node build/gen-version.js",
|
2020-11-24 14:58:56 +08:00
|
|
|
"build": "yarn bootstrap && yarn clean:lib && yarn build:lib && yarn build:lib-full && yarn build:theme && yarn build:esm-bundle && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd",
|
|
|
|
"clean:lib": "rimraf lib",
|
|
|
|
"build:lib": "cross-env LIBMODE=core webpack --config ./build/webpack.config.js",
|
|
|
|
"build:lib-full": "cross-env LIBMODE=full webpack --config ./build/webpack.config.js",
|
2020-10-20 11:45:44 +08:00
|
|
|
"build:esm-bundle": "rollup --config ./build/rollup.config.bundle.js",
|
2020-10-30 23:26:57 +08:00
|
|
|
"build:esm": "node ./build/bincomp.js",
|
2020-11-10 14:24:09 +08:00
|
|
|
"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",
|
2020-10-15 10:31:01 +08:00
|
|
|
"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",
|
2020-08-13 15:18:26 +08:00
|
|
|
"lint": "eslint ./packages --ext .vue,.js,.ts",
|
2020-10-20 10:31:47 +08:00
|
|
|
"lint-fix": "eslint --fix ./packages --ext .vue,.js,.ts",
|
2020-09-24 11:13:53 +08:00
|
|
|
"website-build": "rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js",
|
2020-08-25 09:58:26 +08:00
|
|
|
"website-dev": "webpack-dev-server --config ./website/webpack.config.js",
|
2020-11-23 17:51:51 +08:00
|
|
|
"website-dev:play": "cross-env PLAY_ENV=true yarn website-dev",
|
|
|
|
"upgrade:vue": "bash ./scripts/update-versions.sh"
|
2020-07-21 18:18:44 +08:00
|
|
|
},
|
2020-07-24 15:15:28 +08:00
|
|
|
"peerDependencies": {
|
2020-09-19 15:38:36 +08:00
|
|
|
"vue": "^3.0.0"
|
2020-07-21 18:18:44 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-11-10 14:24:09 +08:00
|
|
|
"@babel/cli": "^7.12.1",
|
2020-08-29 23:24:10 +08:00
|
|
|
"@babel/core": "^7.11.4",
|
2020-10-19 13:50:22 +08:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.12.1",
|
2020-11-10 14:24:09 +08:00
|
|
|
"@babel/plugin-transform-runtime": "^7.12.1",
|
2020-09-21 15:39:53 +08:00
|
|
|
"@babel/preset-env": "^7.11.5",
|
|
|
|
"@babel/preset-typescript": "^7.10.4",
|
2020-08-29 23:24:10 +08:00
|
|
|
"@commitlint/cli": "^9.1.2",
|
|
|
|
"@commitlint/config-conventional": "^9.1.2",
|
2020-09-30 18:21:47 +08:00
|
|
|
"@rollup/plugin-commonjs": "^15.1.0",
|
|
|
|
"@rollup/plugin-node-resolve": "^9.0.0",
|
|
|
|
"@rollup/plugin-typescript": "^6.0.0",
|
2020-08-29 23:24:10 +08:00
|
|
|
"@types/jest": "^26.0.10",
|
|
|
|
"@types/lodash": "^4.14.161",
|
2020-09-11 10:39:26 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^3.10.1",
|
2020-08-29 23:24:10 +08:00
|
|
|
"@typescript-eslint/parser": "^3.10.1",
|
2020-09-15 12:28:12 +08:00
|
|
|
"@vue/babel-plugin-jsx": "^1.0.0-rc.3",
|
2020-09-19 15:38:36 +08:00
|
|
|
"@vue/compiler-sfc": "^3.0.0",
|
2020-08-13 15:18:26 +08:00
|
|
|
"@vue/component-compiler-utils": "^3.2.0",
|
|
|
|
"algoliasearch": "^4.4.0",
|
2020-09-21 15:39:53 +08:00
|
|
|
"babel-jest": "^26.3.0",
|
2020-07-24 19:20:37 +08:00
|
|
|
"babel-loader": "^8.1.0",
|
2020-11-10 14:24:09 +08:00
|
|
|
"babel-plugin-lodash": "^3.3.4",
|
|
|
|
"babel-plugin-module-resolver": "^4.0.0",
|
2020-07-24 19:20:37 +08:00
|
|
|
"babel-preset-vue": "^2.0.2",
|
2020-10-30 23:26:57 +08:00
|
|
|
"chalk": "^4.1.0",
|
2020-09-23 20:18:11 +08:00
|
|
|
"cp-cli": "^2.0.0",
|
2020-08-28 11:09:05 +08:00
|
|
|
"cross-env": "^7.0.2",
|
2020-08-29 23:24:10 +08:00
|
|
|
"css-loader": "^4.2.2",
|
2020-11-10 14:55:03 +08:00
|
|
|
"css-minimizer-webpack-plugin": "^1.1.5",
|
2020-08-29 23:24:10 +08:00
|
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
|
|
"eslint": "^7.7.0",
|
2020-07-27 16:17:41 +08:00
|
|
|
"eslint-plugin-vue": "^7.0.0-beta.0",
|
2020-08-13 15:18:26 +08:00
|
|
|
"file-loader": "^6.0.0",
|
2020-11-10 14:24:09 +08:00
|
|
|
"file-save": "^0.2.0",
|
2020-08-13 15:18:26 +08:00
|
|
|
"highlight.js": "^10.1.2",
|
|
|
|
"html-webpack-plugin": "^4.3.0",
|
2020-07-24 23:25:03 +08:00
|
|
|
"husky": "^4.2.5",
|
2020-09-23 20:18:11 +08:00
|
|
|
"import-from": "^3.0.0",
|
2020-08-29 23:24:10 +08:00
|
|
|
"jest": "^26.4.2",
|
2020-07-24 23:25:03 +08:00
|
|
|
"lerna": "^3.22.1",
|
2020-08-29 23:24:10 +08:00
|
|
|
"lint-staged": "^10.2.13",
|
2020-08-13 15:18:26 +08:00
|
|
|
"markdown-it": "^11.0.0",
|
|
|
|
"markdown-it-anchor": "^5.3.0",
|
|
|
|
"markdown-it-chain": "^1.3.0",
|
|
|
|
"markdown-it-container": "^3.0.0",
|
2020-09-24 11:13:53 +08:00
|
|
|
"mini-css-extract-plugin": "^0.11.2",
|
2020-10-30 23:26:57 +08:00
|
|
|
"ora": "^5.1.0",
|
2020-09-15 16:10:32 +08:00
|
|
|
"rimraf": "^3.0.2",
|
2020-09-30 18:21:47 +08:00
|
|
|
"rollup": "^2.28.2",
|
|
|
|
"rollup-plugin-css-only": "^2.1.0",
|
|
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
|
|
"rollup-plugin-typescript2": "^0.27.3",
|
2020-11-10 10:38:38 +08:00
|
|
|
"rollup-plugin-vue": "^6.0.0-beta.11",
|
2020-08-13 17:31:58 +08:00
|
|
|
"sass": "^1.26.10",
|
2020-08-29 23:24:10 +08:00
|
|
|
"sass-loader": "^10.0.1",
|
2020-11-23 14:17:51 +08:00
|
|
|
"sinon": "^9.0.3",
|
2020-08-13 15:18:26 +08:00
|
|
|
"style-loader": "^1.2.1",
|
2020-08-29 23:24:10 +08:00
|
|
|
"throttle-debounce": "2.3.0",
|
2020-08-13 15:18:26 +08:00
|
|
|
"transliteration": "^2.1.11",
|
2020-08-29 23:24:10 +08:00
|
|
|
"ts-loader": "^8.0.3",
|
2020-08-21 16:00:08 +08:00
|
|
|
"typescript": "^4.0.2",
|
2020-08-13 15:18:26 +08:00
|
|
|
"url-loader": "^4.1.0",
|
2020-07-24 23:25:03 +08:00
|
|
|
"vue-jest": "5.0.0-alpha.1",
|
2020-09-09 18:04:49 +08:00
|
|
|
"vue-loader": "16.0.0-beta.7",
|
2020-08-13 15:18:26 +08:00
|
|
|
"vue-router": "^4.0.0-beta.4",
|
2020-08-29 23:24:10 +08:00
|
|
|
"vue-template-compiler": "^2.6.12",
|
2020-08-13 15:18:26 +08:00
|
|
|
"webpack": "^4.44.1",
|
2020-11-10 14:24:09 +08:00
|
|
|
"webpack-bundle-analyzer": "^3.9.0",
|
2020-08-13 15:18:26 +08:00
|
|
|
"webpack-cli": "^3.3.12",
|
|
|
|
"webpack-dev-server": "^3.11.0"
|
2020-07-21 20:23:49 +08:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"commitizen": {
|
|
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
|
|
}
|
2020-07-22 00:35:23 +08:00
|
|
|
},
|
2020-07-24 23:25:03 +08:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged",
|
|
|
|
"pre-push-todo-open": "npm run test",
|
|
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
2020-08-04 16:08:14 +08:00
|
|
|
"*.{js,ts,vue}": "eslint --fix"
|
2020-07-24 23:25:03 +08:00
|
|
|
},
|
2020-07-22 00:35:23 +08:00
|
|
|
"workspaces": [
|
|
|
|
"packages/*"
|
|
|
|
],
|
|
|
|
"description": "A Component Library for Vue3.0",
|
2020-11-03 11:40:56 +08:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/element-plus/element-plus.git"
|
|
|
|
},
|
|
|
|
"homepage": "https://element-plus.org/",
|
2020-07-28 00:32:04 +08:00
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2020-08-04 19:03:20 +08:00
|
|
|
"@popperjs/core": "^2.4.4",
|
2020-11-23 14:17:51 +08:00
|
|
|
"async-validator": "^3.4.0",
|
2020-08-25 09:58:26 +08:00
|
|
|
"dayjs": "1.x",
|
2020-08-14 01:37:25 +08:00
|
|
|
"lodash": "^4.17.20",
|
2020-10-20 10:31:47 +08:00
|
|
|
"mitt": "^2.1.0",
|
|
|
|
"normalize-wheel": "^1.0.1",
|
2020-11-23 14:17:51 +08:00
|
|
|
"resize-observer-polyfill": "^1.5.1"
|
2020-09-15 16:10:32 +08:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"lib",
|
2020-10-15 10:24:40 +08:00
|
|
|
"types",
|
|
|
|
"packages"
|
2020-09-15 16:10:32 +08:00
|
|
|
],
|
2020-09-15 17:23:41 +08:00
|
|
|
"main": "lib/index.js",
|
2020-09-15 16:10:32 +08:00
|
|
|
"typings": "types/index.d.ts",
|
|
|
|
"unpkg": "lib/index.js",
|
|
|
|
"style": "lib/theme-chalk/index.css",
|
|
|
|
"browserslist": [
|
2020-11-10 14:24:09 +08:00
|
|
|
"> 1%",
|
|
|
|
"last 2 versions",
|
|
|
|
"not ie <= 8"
|
2020-09-15 16:10:32 +08:00
|
|
|
]
|
2020-07-21 18:18:44 +08:00
|
|
|
}
|