2017-10-26 15:18:08 +08:00
|
|
|
{
|
2020-07-01 14:13:03 +08:00
|
|
|
"name": "ant-design-vue",
|
2021-02-27 23:18:09 +08:00
|
|
|
"version": "2.0.1",
|
2020-07-01 14:13:03 +08:00
|
|
|
"title": "Ant Design Vue",
|
|
|
|
"description": "An enterprise-class UI design language and Vue-based implementation",
|
|
|
|
"keywords": [
|
2020-09-24 21:54:39 +08:00
|
|
|
"vue",
|
|
|
|
"vue3",
|
2020-07-01 14:13:03 +08:00
|
|
|
"ant",
|
|
|
|
"design",
|
|
|
|
"antd",
|
|
|
|
"vueComponent",
|
|
|
|
"component",
|
|
|
|
"components",
|
|
|
|
"ui",
|
|
|
|
"framework",
|
|
|
|
"frontend"
|
|
|
|
],
|
|
|
|
"main": "lib/index.js",
|
|
|
|
"module": "es/index.js",
|
2020-10-19 16:43:10 +08:00
|
|
|
"unpkg": "dist/antd.min.js",
|
|
|
|
"typings": "lib/index.d.ts",
|
2020-07-01 14:13:03 +08:00
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"lib",
|
2020-11-02 15:37:12 +08:00
|
|
|
"es",
|
2021-03-12 14:41:09 +08:00
|
|
|
"scripts",
|
|
|
|
"vetur"
|
2020-07-01 14:13:03 +08:00
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"dev": "webpack-dev-server",
|
|
|
|
"start": "cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js",
|
2020-09-23 17:32:53 +08:00
|
|
|
"test": "cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js",
|
|
|
|
"test:dev": "cross-env NODE_ENV=test jest --config .jest.js",
|
2020-07-01 14:13:03 +08:00
|
|
|
"compile": "node antd-tools/cli/run.js compile",
|
2021-03-12 14:41:09 +08:00
|
|
|
"generator-webtypes": "tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js",
|
2020-07-01 14:13:03 +08:00
|
|
|
"pub": "node antd-tools/cli/run.js pub",
|
|
|
|
"pub-with-ci": "node antd-tools/cli/run.js pub-with-ci",
|
|
|
|
"prepublish": "node antd-tools/cli/run.js guard",
|
|
|
|
"pre-publish": "node ./scripts/prepub",
|
|
|
|
"prettier": "prettier -c --write '**/*'",
|
|
|
|
"pretty-quick": "pretty-quick",
|
2021-01-14 17:33:17 +08:00
|
|
|
"dist": "node --max_old_space_size=6144 antd-tools/cli/run.js dist",
|
2020-09-30 17:35:51 +08:00
|
|
|
"lint": "eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components",
|
2020-07-01 14:13:03 +08:00
|
|
|
"lint:style": "stylelint \"{site,components}/**/*.less\" --syntax less",
|
|
|
|
"codecov": "codecov",
|
|
|
|
"postinstall": "node scripts/postinstall || echo \"ignore\""
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/vueComponent/ant-design-vue.git"
|
|
|
|
},
|
|
|
|
"license": "MIT",
|
2020-10-19 16:43:10 +08:00
|
|
|
"funding": {
|
|
|
|
"type": "opencollective",
|
|
|
|
"url": "https://opencollective.com/ant-design-vue"
|
|
|
|
},
|
2020-07-01 14:13:03 +08:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/vueComponent/ant-design-vue/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://www.antdv.com/",
|
|
|
|
"peerDependencies": {
|
2020-12-03 23:38:17 +08:00
|
|
|
"@vue/compiler-sfc": ">=3.0.4",
|
|
|
|
"vue": ">=3.0.4"
|
2020-07-01 14:13:03 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/cli": "^7.8.4",
|
2020-07-25 14:34:22 +08:00
|
|
|
"@babel/core": "^7.10.5",
|
2020-07-01 14:13:03 +08:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.8.3",
|
|
|
|
"@babel/plugin-proposal-export-default-from": "^7.8.3",
|
2020-10-19 17:17:10 +08:00
|
|
|
"@babel/plugin-proposal-export-namespace-from": "^7.12.1",
|
2020-07-01 14:13:03 +08:00
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
|
|
|
|
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
|
2020-07-25 14:34:22 +08:00
|
|
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
2020-07-01 14:13:03 +08:00
|
|
|
"@babel/plugin-transform-member-expression-literals": "^7.8.3",
|
|
|
|
"@babel/plugin-transform-object-assign": "^7.8.3",
|
|
|
|
"@babel/plugin-transform-property-literals": "^7.8.3",
|
2020-07-24 18:46:45 +08:00
|
|
|
"@babel/plugin-transform-runtime": "^7.10.5",
|
2020-07-01 14:13:03 +08:00
|
|
|
"@babel/plugin-transform-template-literals": "^7.8.3",
|
2020-10-19 16:43:10 +08:00
|
|
|
"@babel/plugin-transform-typescript": "^7.12.1",
|
2020-07-01 14:13:03 +08:00
|
|
|
"@babel/polyfill": "^7.8.7",
|
|
|
|
"@babel/preset-env": "^7.9.6",
|
2020-08-16 00:21:58 +08:00
|
|
|
"@babel/preset-typescript": "^7.10.4",
|
2021-03-12 14:58:13 +08:00
|
|
|
"@commitlint/cli": "^12.0.0",
|
|
|
|
"@commitlint/config-conventional": "^12.0.0",
|
2020-07-01 14:13:03 +08:00
|
|
|
"@octokit/rest": "^16.0.0",
|
2021-03-12 14:41:09 +08:00
|
|
|
"@types/fs-extra": "^9.0.8",
|
2020-09-28 11:47:15 +08:00
|
|
|
"@types/lodash-es": "^4.17.3",
|
|
|
|
"@types/raf": "^3.4.0",
|
2020-09-08 13:33:55 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.1.0",
|
|
|
|
"@typescript-eslint/parser": "^4.1.0",
|
2021-01-23 23:41:40 +08:00
|
|
|
"@vue/babel-plugin-jsx": "^1.0.0",
|
2020-07-01 14:13:03 +08:00
|
|
|
"@vue/cli-plugin-eslint": "^4.0.0",
|
2020-12-03 23:38:17 +08:00
|
|
|
"@vue/compiler-sfc": "^3.0.4",
|
2020-09-30 17:35:51 +08:00
|
|
|
"@vue/eslint-config-prettier": "^6.0.0",
|
2021-01-07 19:18:59 +08:00
|
|
|
"@vue/eslint-config-typescript": "^7.0.0",
|
2020-08-12 20:26:09 +08:00
|
|
|
"@vue/test-utils": "^2.0.0-beta.2",
|
2020-07-01 14:13:03 +08:00
|
|
|
"acorn": "^7.0.0",
|
|
|
|
"autoprefixer": "^9.6.0",
|
2021-01-05 16:26:02 +08:00
|
|
|
"axios": "^0.21.0",
|
2020-07-24 18:46:45 +08:00
|
|
|
"babel-core": "^7.0.0-bridge.0",
|
2020-07-01 14:13:03 +08:00
|
|
|
"babel-eslint": "^10.0.1",
|
2020-07-25 14:34:22 +08:00
|
|
|
"babel-jest": "^26.1.0",
|
2020-07-01 14:13:03 +08:00
|
|
|
"babel-loader": "^8.0.0",
|
|
|
|
"babel-plugin-import": "^1.1.1",
|
|
|
|
"babel-plugin-inline-import-data-uri": "^1.0.1",
|
|
|
|
"babel-plugin-istanbul": "^6.0.0",
|
|
|
|
"case-sensitive-paths-webpack-plugin": "^2.1.2",
|
|
|
|
"chalk": "^3.0.0",
|
|
|
|
"cheerio": "^1.0.0-rc.2",
|
|
|
|
"codecov": "^3.0.0",
|
|
|
|
"colorful": "^2.1.0",
|
|
|
|
"commander": "^4.0.0",
|
|
|
|
"compare-versions": "^3.3.0",
|
|
|
|
"cross-env": "^7.0.0",
|
|
|
|
"css-loader": "^3.0.0",
|
|
|
|
"deep-assign": "^2.0.0",
|
2020-08-01 22:40:13 +08:00
|
|
|
"docsearch.js": "^2.6.3",
|
2020-07-01 14:13:03 +08:00
|
|
|
"enquire-js": "^0.2.1",
|
|
|
|
"eslint": "^6.8.0",
|
|
|
|
"eslint-config-prettier": "^6.10.1",
|
|
|
|
"eslint-plugin-html": "^6.0.0",
|
|
|
|
"eslint-plugin-markdown": "^2.0.0-alpha.0",
|
2020-09-30 17:35:51 +08:00
|
|
|
"eslint-plugin-prettier": "^3.1.4",
|
2020-11-07 15:37:17 +08:00
|
|
|
"eslint-plugin-vue": "^7.1.0",
|
2020-07-01 14:13:03 +08:00
|
|
|
"fetch-jsonp": "^1.1.3",
|
|
|
|
"fs-extra": "^8.0.0",
|
|
|
|
"glob": "^7.1.2",
|
|
|
|
"gulp": "^4.0.1",
|
|
|
|
"gulp-babel": "^8.0.0",
|
|
|
|
"gulp-strip-code": "^0.1.4",
|
2020-10-19 16:43:10 +08:00
|
|
|
"gulp-typescript": "^6.0.0-alpha.1",
|
|
|
|
"html-webpack-plugin": "^3.2.0",
|
2021-03-12 14:57:27 +08:00
|
|
|
"husky": "^5.0.0",
|
2021-01-14 17:33:17 +08:00
|
|
|
"ignore-emit-webpack-plugin": "^2.0.6",
|
2020-07-01 14:13:03 +08:00
|
|
|
"istanbul-instrumenter-loader": "^3.0.0",
|
2020-10-01 20:56:26 +08:00
|
|
|
"jest": "^26.0.0",
|
2020-07-25 15:46:49 +08:00
|
|
|
"jest-environment-jsdom-fifteen": "^1.0.2",
|
2020-07-01 14:13:03 +08:00
|
|
|
"jest-serializer-vue": "^2.0.0",
|
|
|
|
"jest-transform-stub": "^2.0.0",
|
2020-07-21 11:14:06 +08:00
|
|
|
"js-base64": "^3.0.0",
|
2020-07-01 14:13:03 +08:00
|
|
|
"json-templater": "^1.2.0",
|
|
|
|
"jsonp": "^0.2.1",
|
2020-12-27 14:50:32 +08:00
|
|
|
"less": "^4.0.0",
|
|
|
|
"less-loader": "^7.0.0",
|
2020-07-01 14:13:03 +08:00
|
|
|
"less-plugin-npm-import": "^2.1.0",
|
2021-01-14 17:33:17 +08:00
|
|
|
"less-vars-to-js": "^1.3.0",
|
2020-07-01 14:13:03 +08:00
|
|
|
"lint-staged": "^10.0.0",
|
|
|
|
"marked": "0.3.18",
|
|
|
|
"merge2": "^1.2.1",
|
2020-08-20 11:13:09 +08:00
|
|
|
"mini-css-extract-plugin": "^0.10.0",
|
2020-07-01 14:13:03 +08:00
|
|
|
"minimist": "^1.2.0",
|
|
|
|
"mkdirp": "^0.5.1",
|
|
|
|
"mockdate": "^2.0.2",
|
|
|
|
"nprogress": "^0.2.0",
|
|
|
|
"optimize-css-assets-webpack-plugin": "^5.0.1",
|
|
|
|
"postcss": "^7.0.6",
|
|
|
|
"postcss-loader": "^3.0.0",
|
|
|
|
"prettier": "^1.18.2",
|
|
|
|
"pretty-quick": "^2.0.0",
|
2020-08-01 22:40:13 +08:00
|
|
|
"prismjs": "^1.20.0",
|
2020-07-01 14:13:03 +08:00
|
|
|
"querystring": "^0.2.0",
|
2021-02-27 22:50:21 +08:00
|
|
|
"raw-loader": "^4.0.2",
|
2020-07-01 14:13:03 +08:00
|
|
|
"reqwest": "^2.0.5",
|
|
|
|
"rimraf": "^3.0.0",
|
|
|
|
"rucksack-css": "^1.0.2",
|
|
|
|
"selenium-server": "^3.0.1",
|
|
|
|
"semver": "^7.0.0",
|
|
|
|
"style-loader": "^1.0.0",
|
|
|
|
"stylelint": "^13.0.0",
|
|
|
|
"stylelint-config-prettier": "^8.0.0",
|
2020-12-27 14:50:32 +08:00
|
|
|
"stylelint-config-rational-order": "^0.1.2",
|
|
|
|
"stylelint-config-standard": "^20.0.0",
|
|
|
|
"stylelint-declaration-block-no-ignored-properties": "^2.1.0",
|
|
|
|
"stylelint-order": "^4.0.0",
|
2020-07-01 14:13:03 +08:00
|
|
|
"terser-webpack-plugin": "^3.0.3",
|
|
|
|
"through2": "^3.0.0",
|
2020-10-01 20:56:26 +08:00
|
|
|
"ts-jest": "^26.4.1",
|
2020-08-16 00:21:58 +08:00
|
|
|
"ts-loader": "^8.0.2",
|
2020-08-21 19:00:31 +08:00
|
|
|
"typescript": "^4.0.2",
|
2020-08-01 22:40:13 +08:00
|
|
|
"umi-mock-middleware": "^1.0.0",
|
2020-08-02 19:20:37 +08:00
|
|
|
"umi-request": "^1.3.5",
|
2020-07-01 14:13:03 +08:00
|
|
|
"url-loader": "^3.0.0",
|
2020-12-03 23:38:17 +08:00
|
|
|
"vue": "^3.0.4",
|
2020-08-02 23:58:55 +08:00
|
|
|
"vue-antd-md-loader": "^1.2.1-beta.1",
|
2020-07-01 14:13:03 +08:00
|
|
|
"vue-clipboard2": "0.3.1",
|
|
|
|
"vue-draggable-resizable": "^2.1.0",
|
|
|
|
"vue-eslint-parser": "^7.0.0",
|
2020-08-01 22:40:13 +08:00
|
|
|
"vue-i18n": "^9.0.0-alpha.11",
|
2020-07-01 14:13:03 +08:00
|
|
|
"vue-infinite-scroll": "^2.0.2",
|
2020-08-12 20:26:09 +08:00
|
|
|
"vue-jest": "^5.0.0-alpha.3",
|
2020-12-15 21:25:35 +08:00
|
|
|
"vue-loader": "^16.1.1",
|
2021-02-27 22:50:21 +08:00
|
|
|
"vue-request": "^1.0.2",
|
2020-12-15 21:25:35 +08:00
|
|
|
"vue-router": "^4.0.0",
|
2020-07-01 14:13:03 +08:00
|
|
|
"vue-server-renderer": "^2.6.11",
|
2020-08-01 22:40:13 +08:00
|
|
|
"vue-style-loader": "^4.1.2",
|
2020-07-01 14:13:03 +08:00
|
|
|
"vuex": "^4.0.0-beta.2",
|
2020-10-19 16:43:10 +08:00
|
|
|
"webpack": "^4.28.4",
|
2021-03-12 14:55:38 +08:00
|
|
|
"webpack-bundle-analyzer": "^4.0.0",
|
2020-07-01 14:13:03 +08:00
|
|
|
"webpack-cli": "^3.2.1",
|
|
|
|
"webpack-dev-server": "^3.1.14",
|
|
|
|
"webpack-merge": "^4.1.1",
|
|
|
|
"webpackbar": "^4.0.0",
|
2021-01-07 19:18:59 +08:00
|
|
|
"xhr-mock": "^2.5.1"
|
2020-07-01 14:13:03 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-09-19 23:36:48 +08:00
|
|
|
"@ant-design-vue/use": "^0.0.1-0",
|
2021-01-22 23:43:28 +08:00
|
|
|
"@ant-design/icons-vue": "^6.0.0",
|
2020-07-25 14:34:22 +08:00
|
|
|
"@babel/runtime": "^7.10.5",
|
2021-01-14 10:14:45 +08:00
|
|
|
"@simonwep/pickr": "~1.8.0",
|
2020-07-01 14:13:03 +08:00
|
|
|
"array-tree-filter": "^2.1.0",
|
2020-08-05 15:44:52 +08:00
|
|
|
"async-validator": "^3.3.0",
|
2020-07-01 14:13:03 +08:00
|
|
|
"dom-align": "^1.10.4",
|
|
|
|
"dom-scroll-into-view": "^2.0.0",
|
|
|
|
"is-mobile": "^2.2.1",
|
2020-09-02 22:44:16 +08:00
|
|
|
"lodash-es": "^4.17.15",
|
2020-08-31 22:25:47 +08:00
|
|
|
"moment": "^2.27.0",
|
2020-08-30 22:23:36 +08:00
|
|
|
"omit.js": "^2.0.0",
|
2020-07-01 14:13:03 +08:00
|
|
|
"resize-observer-polyfill": "^1.5.1",
|
2020-07-14 18:39:43 +08:00
|
|
|
"scroll-into-view-if-needed": "^2.2.25",
|
2020-07-01 14:13:03 +08:00
|
|
|
"shallow-equal": "^1.0.0",
|
2020-10-03 17:16:34 +08:00
|
|
|
"vue-types": "^3.0.0",
|
2020-07-01 14:13:03 +08:00
|
|
|
"warning": "^4.0.0"
|
|
|
|
},
|
|
|
|
"sideEffects": [
|
|
|
|
"site/*",
|
2020-11-01 22:58:31 +08:00
|
|
|
"components/style.ts",
|
2020-07-01 14:13:03 +08:00
|
|
|
"components/**/style/*",
|
|
|
|
"*.vue",
|
|
|
|
"*.md",
|
|
|
|
"dist/*",
|
|
|
|
"es/**/style/*",
|
|
|
|
"lib/**/style/*",
|
|
|
|
"*.less"
|
2021-03-12 14:41:09 +08:00
|
|
|
],
|
|
|
|
"vetur": {
|
|
|
|
"tags": "vetur/tags.json",
|
|
|
|
"attributes": "vetur/attributes.json"
|
|
|
|
},
|
|
|
|
"web-types": "vetur/web-types.json"
|
2020-03-12 22:49:03 +08:00
|
|
|
}
|