@opendesign-plus-test/components 0.0.1-rc.21 β 0.0.1-rc.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunk-OElCookieNotice.cjs.js +1 -1
- package/dist/chunk-OElCookieNotice.es.js +428 -137
- package/dist/components/OBanner.vue.d.ts +10 -1
- package/dist/components/OFooter.vue.d.ts +1 -1
- package/dist/components/OHeaderSearch.vue.d.ts +4 -4
- package/dist/components/activity/OActivityApproval.vue.d.ts +277 -0
- package/dist/components/activity/OActivityForm.vue.d.ts +140 -0
- package/dist/components/activity/OMyActivityCalendar.vue.d.ts +578 -0
- package/dist/components/activity/config.d.ts +15 -0
- package/dist/components/activity/data.d.ts +51 -0
- package/dist/components/activity/index.d.ts +623 -0
- package/dist/components/activity/types.d.ts +76 -0
- package/dist/components/meeting/OMeetingCalendar.vue.d.ts +309 -0
- package/dist/components/meeting/OMeetingForm.vue.d.ts +156 -0
- package/dist/components/meeting/OMyMeetingCalendar.vue.d.ts +582 -0
- package/dist/components/meeting/OSigMeetingCalendar.vue.d.ts +24 -0
- package/dist/components/meeting/components/OMeetingCalendarList.vue.d.ts +27 -0
- package/dist/components/meeting/components/OMeetingCalendarSelector.vue.d.ts +664 -0
- package/dist/components/meeting/components/OMeetingDetail.vue.d.ts +12 -0
- package/dist/components/meeting/components/OMeetingPlaybackSubtitles.vue.d.ts +5 -0
- package/dist/components/meeting/components/OMeetingPlaybackVideo.vue.d.ts +17 -0
- package/dist/components/meeting/components/OSigMeetingAside.vue.d.ts +16 -0
- package/dist/components/meeting/config.d.ts +27 -0
- package/dist/components/meeting/types.d.ts +140 -0
- package/dist/components/meeting/utils.d.ts +21 -0
- package/dist/components.cjs.js +224 -3
- package/dist/components.css +1 -1
- package/dist/components.es.js +43544 -2307
- package/dist/index.d.ts +2 -0
- package/package.json +6 -3
- package/scripts/generate-components-index.js +4 -0
- package/src/assets/meeting/svg-icons/icon-all.svg +3 -0
- package/src/assets/meeting/svg-icons/icon-backward.svg +4 -0
- package/src/assets/meeting/svg-icons/icon-calendar.svg +3 -0
- package/src/assets/meeting/svg-icons/icon-cancel.svg +4 -0
- package/src/assets/meeting/svg-icons/icon-captions.svg +4 -0
- package/src/assets/meeting/svg-icons/icon-close-captions.svg +6 -0
- package/src/assets/meeting/svg-icons/icon-close-fullscreen.svg +6 -0
- package/src/assets/meeting/svg-icons/icon-copy.svg +3 -0
- package/src/assets/meeting/svg-icons/icon-create.svg +5 -0
- package/src/assets/meeting/svg-icons/icon-delete.svg +7 -0
- package/src/assets/meeting/svg-icons/icon-empty.svg +31 -0
- package/src/assets/meeting/svg-icons/icon-empty_dark.svg +49 -0
- package/src/assets/meeting/svg-icons/icon-event.svg +3 -0
- package/src/assets/meeting/svg-icons/icon-export.svg +3 -0
- package/src/assets/meeting/svg-icons/icon-forward.svg +4 -0
- package/src/assets/meeting/svg-icons/icon-fullscreen.svg +6 -0
- package/src/assets/meeting/svg-icons/icon-help.svg +3 -0
- package/src/assets/meeting/svg-icons/icon-important.svg +4 -0
- package/src/assets/meeting/svg-icons/icon-info.svg +3 -0
- package/src/assets/meeting/svg-icons/icon-meet.svg +3 -0
- package/src/assets/meeting/svg-icons/icon-meeting-message.svg +5 -0
- package/src/assets/meeting/svg-icons/icon-meeting.svg +4 -0
- package/src/assets/meeting/svg-icons/icon-play.svg +5 -0
- package/src/assets/meeting/svg-icons/icon-playing-tip.svg +7 -0
- package/src/assets/meeting/svg-icons/icon-playing.svg +5 -0
- package/src/assets/meeting/svg-icons/icon-question.svg +4 -0
- package/src/assets/meeting/svg-icons/icon-sound.svg +5 -0
- package/src/assets/meeting/svg-icons/icon-speaker.svg +3 -0
- package/src/assets/meeting/svg-icons/icon-summit.svg +3 -0
- package/src/assets/meeting/svg-icons/icon-telligent.svg +3 -0
- package/src/assets/meeting/svg-icons/icon-tip.svg +3 -0
- package/src/assets/meeting/svg-icons/icon-todo.svg +4 -0
- package/src/assets/meeting/transparent.png +0 -0
- package/src/assets/svg-icons/icon-chevron-up.svg +3 -0
- package/src/assets/svg-icons/icon-filter.svg +3 -0
- package/src/assets/svg-icons/icon-loading.svg +4 -0
- package/src/assets/svg-icons/icon-search.svg +3 -0
- package/src/assets/svg-icons/icon-tips.svg +3 -0
- package/src/components/OBanner.vue +11 -3
- package/src/components/OFooter.vue +1 -1
- package/src/components/activity/OActivityApproval.vue +775 -0
- package/src/components/activity/OActivityForm.vue +465 -0
- package/src/components/activity/OMyActivityCalendar.vue +1342 -0
- package/src/components/activity/config.ts +130 -0
- package/src/components/activity/data.ts +365 -0
- package/src/components/activity/index.ts +24 -0
- package/src/components/activity/types.ts +83 -0
- package/src/components/common/MoreText.vue +119 -0
- package/src/components/common/ThFilter.vue +326 -0
- package/src/components/events/OEventsApply.vue +2 -86
- package/src/components/events/OEventsCalendar.vue +0 -25
- package/src/components/events/OEventsList.vue +0 -51
- package/src/components/events/index.ts +1 -0
- package/src/components/meeting/OMeetingCalendar.vue +865 -0
- package/src/components/meeting/OMeetingForm.vue +1035 -0
- package/src/components/meeting/OMeetingPlayback.vue +439 -0
- package/src/components/meeting/OMyMeetingCalendar.vue +1501 -0
- package/src/components/meeting/OSigMeetingCalendar.vue +411 -0
- package/src/components/meeting/components/OMeetingCalendarList.vue +462 -0
- package/src/components/meeting/components/OMeetingCalendarSelector.vue +206 -0
- package/src/components/meeting/components/OMeetingDetail.vue +189 -0
- package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +611 -0
- package/src/components/meeting/components/OMeetingPlaybackVideo.vue +741 -0
- package/src/components/meeting/components/OMyCalendarWrapper.vue +160 -0
- package/src/components/meeting/components/OSigMeetingAside.vue +197 -0
- package/src/components/meeting/config.ts +110 -0
- package/src/components/meeting/index.ts +45 -0
- package/src/components/meeting/types.ts +167 -0
- package/src/components/meeting/utils.ts +106 -0
- package/src/draft/Footer.vue +4 -4
- package/src/env.d.ts +15 -0
- package/src/i18n/en.ts +140 -0
- package/src/i18n/index.ts +18 -4
- package/src/i18n/zh.ts +140 -0
- package/src/index.ts +2 -0
- package/tsconfig.json +6 -2
- package/vite.config.ts +25 -9
- package/npmcachae/_cacache/content-v2/sha512/05/f7/dd881de8b21208ea65cfce17c65f29964c3897505819f81151b9798a3a6ab1a1114324192354ead15cd2c8d93f76cc9929af168066ec9cc7878d0fd87578 +0 -1
- package/npmcachae/_cacache/content-v2/sha512/08/b7/879230f8c2f3765920a6fd6113f4687141f1f645f96af7d95a0dee9113d1095d000fb78a5dd55c1860bbfb9b698ef6281b3874b03b2384222f61fe055fc4 +0 -1
- package/npmcachae/_cacache/content-v2/sha512/10/a0/a6626613c03ee052925a762e8675878efdf83dac64fafea43beb2a875f7d7c3907bb0ee30761253cd16021fd58911449594e1d3358675cbb7c48e62f220a +0 -1
- package/npmcachae/_cacache/content-v2/sha512/2e/a6/7cbcf55a98bbe2ca881d10e982ebf59211a0ec051eaf46eb1914df66cc35ae502ed6888850e51d8f45cd92695bac16961a642bc41508f8d5160a9ab617ab +0 -1
- package/npmcachae/_cacache/content-v2/sha512/92/8d/e5259c5d5cc2a625247f3c4d809192ca9482467e23683d74924a11e91a7997ad890b3d26adaf34df66d5329cc7a5fbde6713110cad05107a0b504e4fd4e8 +0 -1
- package/npmcachae/_cacache/content-v2/sha512/e9/45/9597d870127c35681155cec5fe52fde4e1aa0f778b996ee371e856aca850ee4c13aba74b0c3d3a89ff0ea4c9e1d33e64e53c31dc9cede0b31012695ee659 +0 -1
- package/npmcachae/_cacache/index-v5/16/4a/7195fcc6857299c4ab7e26014a8ae6e3c396507a2c8db3da1b74b005d574 +0 -3
- package/npmcachae/_cacache/index-v5/58/f0/4fe556f104b09be642895a82afa463fe560d9a0dc8f507efeef825a6905e +0 -3
- package/npmcachae/_cacache/index-v5/67/7d/0b50dc4c09555fc922ccf43c46994f1a0a5ff47dc0a5d5cf41437ac2d3e6 +0 -3
- package/npmcachae/_cacache/index-v5/8f/28/353f8839e030ab11aab3e7d9f1b8c053403e9f593cf6d4aa6ec8fdd7610d +0 -3
- package/npmcachae/_cacache/index-v5/97/10/0fcf20eb29d0726bd820822f6729718464b591b0e6901217c956740e943c +0 -3
- package/npmcachae/_cacache/index-v5/db/89/a0a4f35f593105624ab39339962d9e9b5cc65ed0c346b0732fb8dd73721d +0 -3
- package/npmcachae/_logs/2026-03-26T14_10_35_885Z-debug-0.log +0 -171
- package/npmcachae/_logs/2026-03-26T14_10_38_617Z-debug-0.log +0 -4227
- package/npmcachae/_logs/2026-03-26T14_10_45_316Z-debug-0.log +0 -4228
- package/npmcachae/_logs/2026-03-26T14_10_48_169Z-debug-0.log +0 -4228
- package/npmcachae/_logs/2026-03-26T14_10_51_306Z-debug-0.log +0 -464
- package/npmcachae/_logs/2026-03-26T14_10_53_911Z-debug-0.log +0 -464
- package/npmcachae/_logs/2026-03-26T14_10_56_398Z-debug-0.log +0 -464
- package/npmcachae/_logs/2026-03-26T14_10_58_861Z-debug-0.log +0 -464
- package/npmcachae/_logs/2026-03-26T14_11_01_337Z-debug-0.log +0 -464
- package/npmcachae/_logs/2026-03-26T14_11_03_851Z-debug-0.log +0 -464
- package/npmcachae/_logs/2026-03-26T14_11_08_024Z-debug-0.log +0 -464
- package/npmcachae/_update-notifier-last-checked +0 -0
- package/src/components/meeting/npmcachae/_cacache/content-v2/sha512/3e/17/1865217b9acb9f4921c53a09b5c76587cd2ab748beb2699ff6cfb1341d73b1aa56ed91ffc5ab2c9c9b3fbe626103b35d9a79ff29ff6b8cbb8d89755fe1a2 +0 -1
- package/src/components/meeting/npmcachae/_cacache/content-v2/sha512/a6/15/47bb7552ec9248079e839a5feecc1742d4de19524fdf041cf581701cf4760a5025106036145e279ba193b07c8fa5b07ae3d75f1b6032f0cb2219115b6167 +0 -1
- package/src/components/meeting/npmcachae/_cacache/content-v2/sha512/d1/4c/133b32e09c97101a27a07cc4432f94e470cff02d120d21babcea77c3f5cd436793516dc1a8e282ee1a568f923c148b1a48f4a43233462a530d35e8b41c67 +0 -1
- package/src/components/meeting/npmcachae/_cacache/index-v5/54/0d/a4909047714a0a7198bb9bd37020992464e47c79a791889919b84d90aab0 +0 -3
- package/src/components/meeting/npmcachae/_cacache/index-v5/8e/2b/21a79778e2ac08cf5663baf83cb35f951995a496007eb2e2f7fba54021a4 +0 -3
- package/src/components/meeting/npmcachae/_cacache/index-v5/eb/a0/b70c8132e5b57a0f1e129b8cc941796420a9c147c0baa680710083740898 +0 -2
- package/src/components/meeting/npmcachae/_logs/2026-03-20T07_03_54_955Z-debug-0.log +0 -277
- package/src/components/meeting/npmcachae/_logs/2026-03-20T07_03_57_842Z-debug-0.log +0 -277
- package/src/components/meeting/npmcachae/_logs/2026-03-20T07_04_00_016Z-debug-0.log +0 -277
- package/src/components/meeting/npmcachae/_logs/2026-03-20T07_04_02_191Z-debug-0.log +0 -277
- package/src/components/meeting/npmcachae/_logs/2026-03-20T07_04_04_425Z-debug-0.log +0 -277
- package/src/components/meeting/npmcachae/_logs/2026-03-20T07_04_06_642Z-debug-0.log +0 -277
- package/src/components/meeting/npmcachae/_logs/2026-03-20T07_04_08_826Z-debug-0.log +0 -277
- package/src/components/meeting/npmcachae/_logs/2026-03-20T07_25_36_140Z-debug-0.log +0 -433
- package/src/components/meeting/npmcachae/_logs/2026-03-20T07_25_39_573Z-debug-0.log +0 -433
- package/src/components/meeting/npmcachae/_logs/2026-03-20T07_25_42_134Z-debug-0.log +0 -212
- package/src/components/meeting/npmcachae/_update-notifier-last-checked +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"_id":"element-plus","_rev":"286-ff2bd3ebf89c4b10154c32537ac11fce","name":"element-plus","dist-tags":{"latest":"2.13.6"},"versions":{"1.0.0":{"name":"element-plus","version":"1.0.0","author":"","license":"ISC","_id":"element-plus@1.0.0","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"dist":{"shasum":"eabae451d2d79eba7aa088a8d948386654f59101","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.0.tgz","fileCount":1,"integrity":"sha512-1FFYxn9RSMMdUxym//XyrdqPyppD15fE9T3+QccVcB0yKxhDfGVMfZiDrLeqJvO1YLO9qkz1jzhRZ1I+ot9ZZw==","signatures":[{"sig":"MEUCIQCfkn46BfHMhvb+7ZOsSho5ktnGL2fkxEtgy/IAw/aVQAIgblhck+FVwiWFnH5tMVdYdhGTkF7w4+eMT1mu8/CKtjQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":208,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdAMrzCRA9TVsSAnZWagAAMMwP/0gJTmwJG5Bgrlfrv5pL\nYqTK9k3x+Sihq2m548xLoqiTcPLJd0XKWaoZkefTOytDAXjhORT8AkkY+YXh\nPmowdGBjrg+uSUTwGU4M+we6dzQas2HhpgyN1krWQvG9jQfK8jqKcHE8SZGf\n+LuU/CPkrsFN4tbuhIQyw2RcsMYMPOKLk0gWoOkEVbqHTK5ddLtgLjQzSNAO\nbP0MqHGb3/3qGdsyMscEjqFp2qPyvRZPwHIJn9zyDmAVMspGgpF1yjLtTpY3\nlj4wtKSMlRDrWD6Yw9xARZ2sVifDWycTqZkk3GPB8iQZ5jjSzcte5LVHV0n6\n9OqWdw2+NTPgUJT0I+6xeWUO4f+SB1RC4hyJ2myys7bUWGBAsJGbwyacUQdJ\nvrumHrhtP0m7E8iIB+TxEzEob/BChPmHNl3O1zDCIFn7/L+CvCfCFJtfIW+C\nq7OOsYwn34+Y+CrdyOBcH58F58TsMw09Bk0aMYiBOo3j/oqdXJOhmo47cIy5\ndovcoEbZuzS+bljZtyHoJgMa3EnrDPE3smN9ddpJLkMPW6hbndWzul5+v2Hi\nUAXQqWVZtz2D1yDUfmc7lGrjYAcNklfn0wgweNSOiTsiqoFH2K1gYpsA7DcL\n6yUxLqcKPf2MVIGOO1UT0TKHstW7KLOYzjUEMnD3YsBJqw5sCbVYpTp8oOtU\nGrTB\r\n=jcPa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"_npmVersion":"6.4.1","description":"","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.0_1560333042428_0.08437709271374616","host":"s3://npm-registry-packages"}},"1.0.1-alpha.0":{"name":"element-plus","version":"1.0.1-alpha.0","license":"MIT","_id":"element-plus@1.0.1-alpha.0","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"d2a917311d52b7c8e8edecc7773f4b600c12c123","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.0.tgz","fileCount":8,"integrity":"sha512-bhlO5ZlNWA7CnqgfSf6gwmHPGxX5JndvkUOyXz+hMk/MsGN8U3laFF6NiAhGYxvKKhdLPFZWtjXIqL60vkyC5g==","signatures":[{"sig":"MEYCIQC6P2OlInY8BpnTaiJkYFSUJo29hekkN6u/CVsfjffZBQIhAJnGh/Z/eojTcvibO467FRCNt91FcP/ybq0FfXmgwdL/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":595518,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfYIWoCRA9TVsSAnZWagAAl/QQAJ6DG0vK8k/qeacQqfDL\neWJYVNa9sDnIOnEZEOl6lE7dnu4Z4PhClLcSQRvsSesP6quvlbPY/MKXF8B3\nSZU/cYZvLFx+8GOvHU8wKxC8mJL4ZXE3cq1/bwPkz4n2mm1tsWHkgIKR19kD\nFQIUiOlEky9D9tDF1sxXMndz6uZNBI9uM6pXZtuZIiluv4AeMh73YyhcCETE\nCRxkZu6f2/p0hE1clcXAJmrQAdpFK8Z5vzhEev5hYTCugPxLlblQreJnYj4/\nzXDhJfYebROEFvyyQ3CRTcZqEzNjWDhfFbNOK9Svqo9zb6pxt4zgAMaCtPRU\nXCLspLjpFhMeLTS17RL2iaPSD+KH+zjjif00g9YfZKwfOmmv9TRTO9F1qHRD\nd4B/fs36tjhO1SALzG+yiCxHmEn7/SISMVAAIodgpg5//LVCu1Q3yWN4uy9+\noQVEVtlxpaIO4Cx91VNnHBe8KNG/agey0eaDvWG2ltibSlvXX66G7KBHm+jG\nWYHw7Il4tt/C9aCTXhR4WjPZMqJuPGbuDLSFk539KLOTskwMXX9HjqxkUzN3\nE2TwOKpXkI7W9+LnhxTaDHC725l11V4gO7I09rmJiXH/KCGldNgYK06A0QY9\nTEiMbLfCN1RCRuNHlV8CIs86WULi1IxmlNib3knJ4dV8n1/KcK4rTLEGlkqQ\nZbPk\r\n=5iNI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"7b31f9fd67bd43a0a898e201bdd3fc87bdbd12e6","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn build:lib && yarn build:theme","bootstrap":"yarn && npx lerna bootstrap","build:lib":"rimraf lib && webpack --config ./build/webpack.config.js","storybook":"start-storybook","build:theme":"rimraf packages/theme-chalk/lib && gulp build --gulpfile packages/theme-chalk/gulpfile.js && cp-cli packages/theme-chalk/lib lib/theme-chalk","website-dev":"webpack-dev-server --config ./website/webpack.config.js","website-build":"webpack --config ./website/webpack.config.js","website-dev:play":"PLAY_ENV=true yarn website-dev"},"typings":"types/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+ssh://git@github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["last 2 version"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","cp-cli":"^2.0.0","lodash":"^4.17.20","@popperjs/core":"^2.4.4"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.4.2","sass":"^1.26.10","vite":"^1.0.0-rc.4","husky":"^4.2.5","lerna":"^3.22.1","eslint":"^7.7.0","rimraf":"^3.0.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","ts-loader":"^8.0.3","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@swc-node/jest":"^0.3.4","@commitlint/cli":"^9.1.2","@storybook/html":"^6.0.20","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@vue/compiler-sfc":"^3.0.0-rc.9","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","html-webpack-plugin":"^4.3.0","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","@storybook/addon-storysource":"^6.0.20","@vue/component-compiler-utils":"^3.2.0","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1"},"peerDependencies":{"vue":"^3.0.0-rc.9"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.0_1600161192352_0.9917728954204135","host":"s3://npm-registry-packages"}},"1.0.1-alpha.1":{"name":"element-plus","version":"1.0.1-alpha.1","license":"MIT","_id":"element-plus@1.0.1-alpha.1","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"b9f2af4c2696c5c0319fbd5f030c552da45736ec","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.1.tgz","fileCount":99,"integrity":"sha512-fxJaiwcTT+hFpItfmZ6khhR01Pre1p8JZ4aLKkHUXscMezmWphHl3vELDnUfz/6VoJRJe+SBXWYgPu/XFz59JQ==","signatures":[{"sig":"MEUCICEo5HQRn8ZnK1VAxjPnvbd3pE/fWwNFxczcwGV2Lm7hAiEAtw/gVbckhN30Z/Zm/BlNkeTSRREJZaQ9HgrdfmzCLiU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1429791,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfYIgwCRA9TVsSAnZWagAAXAIQAIbfJ9Qe53G+PLhZiW7/\nJGUt1OQxFgGrNnyWy2u5+C/OlEQShlpUkK54OoMzfoQo7cuH4CtaAqWnvVfr\nN3lYw+FYLR/ybC2c/qdAHizVaiJ+Vv0gzkRCg9Sg1NnGashxWm8FvucTF3Ha\nOTBUCJfnc+mbMI6to40JdbGO1mcPNGuXjMKme4OORL5wxeVYvLMzEjc64l30\nu5+oPtSCLxEB7KknqUzh8Yll8YStmG/EAgkGr8rbCPQF/6FtwPXTVldfgOzW\n6krfelmTbcrsSR8lv/ruA22jI+69RxVL5KP+GmtKBHuH6i6GS95U3pEgUFLJ\nV3t7oXMFf4dvzOGerBmKxq8foJ0nLpA+W5tEdklgphG1RVFuZTSh2IV6178R\nKZ3H8ItTBnlzbRBPSYhTPKa1Q9XzgdUSB9/RD+pYqnzr5MrtNbeNmSPdVBoG\nZzxGKn0gAosznFwv3DeouXLORR1t8Qi11tl5kID0T/Co94eLSYv6CNaXsaNk\nev3l+IxW+bNaCBx6QSQTG0YETPXAdmNJus5F9cmHfriKwMTEj1wXcHKSLmZ6\nl+NBxqnfq/7Qr+SwNDAnjt9TUR5dSR19OJFOWdDj/Lr+XFrijStk5OI/YY+8\nwVj+TtKLcUNwlBwuKyg3w5wA63pxmIjzOaLBlf6TjIlottA3Cj8A8k3uKwPa\nrlRr\r\n=QQ1T\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"708732238a869c0af77aef1b774b19509f8b24f7","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn build:lib && yarn build:theme","bootstrap":"yarn && npx lerna bootstrap","build:lib":"rimraf lib && webpack --config ./build/webpack.config.js","storybook":"start-storybook","build:theme":"rimraf packages/theme-chalk/lib && gulp build --gulpfile packages/theme-chalk/gulpfile.js && cp-cli packages/theme-chalk/lib lib/theme-chalk","website-dev":"webpack-dev-server --config ./website/webpack.config.js","website-build":"webpack --config ./website/webpack.config.js","website-dev:play":"PLAY_ENV=true yarn website-dev"},"typings":"types/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+ssh://git@github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["last 2 version"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","cp-cli":"^2.0.0","lodash":"^4.17.20","@popperjs/core":"^2.4.4"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"jest":"^26.4.2","sass":"^1.26.10","vite":"^1.0.0-rc.4","husky":"^4.2.5","lerna":"^3.22.1","eslint":"^7.7.0","rimraf":"^3.0.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","ts-loader":"^8.0.3","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@swc-node/jest":"^0.3.4","@commitlint/cli":"^9.1.2","@storybook/html":"^6.0.20","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@vue/compiler-sfc":"^3.0.0-rc.9","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","html-webpack-plugin":"^4.3.0","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","@storybook/addon-storysource":"^6.0.20","@vue/component-compiler-utils":"^3.2.0","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1"},"peerDependencies":{"vue":"^3.0.0-rc.9"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.1_1600161839642_0.09640172603083896","host":"s3://npm-registry-packages"}},"1.0.1-alpha.2":{"name":"element-plus","version":"1.0.1-alpha.2","license":"MIT","_id":"element-plus@1.0.1-alpha.2","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"6593fff0dd88e3cf708334d6a637150af9c08827","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.2.tgz","fileCount":99,"integrity":"sha512-H2I/fH8FPY5yRdLzCtYJjOVwZwABvysS8y+XfIxWVwz2gugsRnVhU/LGq1ZEi/MfFVIDHDKo7v2L06e3PWoOTA==","signatures":[{"sig":"MEQCIAwflDsQ/GAWorsQ7kHvEshYUKrhFQQbWf9UyeC+kcvzAiA3RkEO6RUvtSF9KwgRQA4zcpwQrSTGoB0QuHy4aF4XYw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1482569,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfYboKCRA9TVsSAnZWagAAUfQP/RHFO2sRKAU1jOMJaCt4\nDw1/JtJ/+g/0HYgulOjgUnwdVLRBL/ru4DXY9Y1mIuWHnhVFCYKd8kTnawGy\nEXRC/hHrBVJ4GKhiERBDFsb2Mrjr/L9z2t6vk1ABq46fP+pPjwbhe7bUREtQ\nIzSLlcgZJhZcD1yAkh68S2REk+dA4I3DASIERE6ktRx7yMY5sdEeo7bb7BEd\ncinryOZNm3A+Sl6pTKJWmua+J6RHDkFjmMeJR2iQmeJ/tlRDS3Crx4uA3uta\n+GEe2gx4DHlAnqSnhvDIUBsjXTIo+638NSrTNBAn3lFOWEUPzrO5vgpR05xh\nG9oaVDwpyuhE9jVuhtQC0+ZUXcyFkdDVXzMNl/BGjgtPADcRWeIdF7DTJ6DD\nb2RJYhMsFJdDrCFhwLROApFsZwy2EtcuSCT9Bv4OZgo824LX8t+87S5ZJbqP\nIhtmd5LEo5M1nz7lTdekFQCMQfyCewqp0Ufw2Or6Jrj8v0BtHAFFmzIDy0js\n2crltpVeTGgbm87i0TdGI1p3Ri+cbMnQoMjhQ8Qs1Lzf5A9EhUNZHSvedgBA\nZY+kbNbvY5tsSiQGQO4cinSCi5xLKUJzw3MWEaAl+ZO5jqFI8Saks5nDBO3A\nURRWISahthW9loHTsW782Gwu+PxONZW/iZBLq/SmeqJaxrDHQY7eC9bUHnl4\nkvMq\r\n=T2dl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"d631c7b8f07c3119290ffa5dbda7c9d44dc885ed","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn build:lib && yarn build:theme","bootstrap":"yarn && npx lerna bootstrap","build:lib":"rimraf lib && webpack --config ./build/webpack.config.js","storybook":"start-storybook","build:theme":"rimraf packages/theme-chalk/lib && gulp build --gulpfile packages/theme-chalk/gulpfile.js && cp-cli packages/theme-chalk/lib lib/theme-chalk","website-dev":"webpack-dev-server --config ./website/webpack.config.js","website-build":"webpack --config ./website/webpack.config.js","website-dev:play":"PLAY_ENV=true yarn website-dev"},"typings":"types/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+ssh://git@github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["last 2 version"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","cp-cli":"^2.0.0","lodash":"^4.17.20","@popperjs/core":"^2.4.4"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.4.2","sass":"^1.26.10","vite":"^1.0.0-rc.4","husky":"^4.2.5","lerna":"^3.22.1","eslint":"^7.7.0","rimraf":"^3.0.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","ts-loader":"^8.0.3","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@swc-node/jest":"^0.3.4","@commitlint/cli":"^9.1.2","@storybook/html":"^6.0.20","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@vue/compiler-sfc":"^3.0.0-rc.9","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","html-webpack-plugin":"^4.3.0","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","@storybook/addon-storysource":"^6.0.20","@vue/component-compiler-utils":"^3.2.0","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1"},"peerDependencies":{"vue":"^3.0.0-rc.9"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.2_1600240138355_0.7198601617968465","host":"s3://npm-registry-packages"}},"1.0.1-alpha.3":{"name":"element-plus","version":"1.0.1-alpha.3","license":"MIT","_id":"element-plus@1.0.1-alpha.3","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"4b105be42e7cea3d6ce6478627fb0f5ccf5f4a37","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.3.tgz","fileCount":182,"integrity":"sha512-Z6k2tOTSHMkLu7tipBe4u9jQTD2QNb7dZNPSUWOU+6Eavaqb6xouxX3+nRpBvRAgF2DDx37mWc+Vv50FTkguEA==","signatures":[{"sig":"MEQCIGMMOGz/OQQNus3FUTz+l52sZ4/MhiXJg6iPDIRVUTvbAiBhZjHm5bOuAvQgvntDoXprYv5WvP0etjwH21j8cv9RvA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1585786,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfcCQYCRA9TVsSAnZWagAAGo4P/iGTG44lJCVOscXTz3ED\nw8BbR8PNTNBp+4YMemPDuRDcSocIyYYEhQvFX9N2To2+QrMfnRFJHTAM/z7i\nHm8j1PZ/KaSlWm2yuGo54T0AM1ZXjdcy4wxSvh9035cELdK5bj7eW7hw8aM+\nQFZ6hUj+B3fMNnK3mLnNAPrhmhh/r2K2ALvyEru+u53Y2F0xc1UwVLNbHIlc\nitLIFN7gI9JcwiyNa8fzSqZzmyoyQWN4lRw1fiK0Cit3iFEGgOpeVHHrus4F\nd9IvxdZracq0BH/vkpaWNS2cavgy/NfoCYucmkLueefUujKAKNw6ckQ+z+hx\nG3yjlU/oBkU2ZApXDiNOpyGCkvTNU9Rj5RxUWfNG8oGFD4VMdzyJxMCOr6tO\nxdhCqnSU46uJ/1wS4LYLktW1MeESvdvnnJnsiZ8PZbdUDGSKqNd4mgdCKskN\nJtOuVRw5k3w5HHKdMbbn6iY1A6mfkAfoDSbfjUBU8SzsFbaQbn0qbHTi7pLm\no7qban8A3jtfK0IRa8ALfFPeXjXvfxAMkq0INpAkpMtZIvbJJwFKX1d0fgaA\ndpcJzh45KpN98/GGxiK0ypDYgntHESrRiATQ6am8BUiUfY4IX8sBYqEKzKRg\njRJMQYJHGtJID2hJv5Z7jLvbp63sF2/ciUxQZI3ijr7RsXIbce6lxv4XiObT\n1E8k\r\n=q+lk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"3b7369473c8697e155d38aabc7bcbded3834e3bd","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn build:lib && yarn build:theme","bootstrap":"yarn && npx lerna bootstrap","build:lib":"rimraf lib && webpack --config ./build/webpack.config.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","website-dev":"webpack-dev-server --config ./website/webpack.config.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"types/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+ssh://git@github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["last 2 version"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.4.2","sass":"^1.26.10","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","ts-loader":"^8.0.3","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","html-webpack-plugin":"^4.3.0","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","mini-css-extract-plugin":"^0.11.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","@vue/component-compiler-utils":"^3.2.0","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.3_1601184791676_0.8663500821971757","host":"s3://npm-registry-packages"}},"1.0.1-alpha.4":{"name":"element-plus","version":"1.0.1-alpha.4","license":"MIT","_id":"element-plus@1.0.1-alpha.4","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"6904c950df2ccb42963c3aed909c6565447a32b8","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.4.tgz","fileCount":182,"integrity":"sha512-tj/fTChQjk8sCgR3Ag+UTcfvuxSUTF6Y+BR5wx0exoP5Zrc0QnSY1d9RVKZhnae4QGXnY9E4oojPQRxzAPtq0g==","signatures":[{"sig":"MEUCIQCWC1bArvPhGsunf7BKHVzAHO+hbUqWnBeC19KMbpMI/wIgFyAIYnGPsV8abAJ8FQ49s5OUieh5lEbaDTQ8Nlx0EKQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1585951,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfeZUcCRA9TVsSAnZWagAAkG8P/1jop2eEV12LH1B4AvWj\nifRG3b6HFrxRCLDQV4kOjOLdemWxJ5NaL5nMtwrVEfHiYD56c1rmala2Vfmh\nXuxYkE3K5DXvx2rEGSMHeAkn7/0ZLqWNRFW8aWSp19VhRbzp3hYD3aMa128G\n3ck+duAv+ZV3FeAIG/xJjjjD7hzb82sjrDy57zz6Dt8GD/dyMhu7/D0o6eJl\neBRLj1j+0fbk+OaFLjId0qhcFJ/6HOYT6inCViCILVf/Pk0ahSw0FZ79QtbD\n9XsDpPXUIeOvuaTb0pE1NRKQniEGCM1Z1JNuMpisjPf1BEOvohi/Ufq33zYx\nDn8/6npqueAshnHb+dH3vVm4ILWtzDvdwALCUJpqE8yi47refwFDCcfCeNm7\nXuITQcooDVqoyvxF6Qd+AEtUTiqhQGn62aKw8oVAvV0TneDdAuljCE41BmXn\nLcpgKznxisxWlLX8qeYB1Jd4j20LqeWWqTCVorZ9y2OWJRPqfgaJLfQojQrv\nWiYwn6s/DYf+x+tLxgCekKcoANYWrrZ5/xDIo2Y9jX7xt6Szf4+kSNM8iput\nNx0KpX5LGs4rO68H7+8T0h4zaXr0uYANmh6HWMYazWT7I8TeZWWxx7FZUo8x\nd75Z0Yn/JorU2TIKmbNxHPSb3IHcjTaCln1KRCk/kv1XSr0RJ7lZOMWb0c9I\nReYU\r\n=LL8l\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"62fe4c14f7c149a1f77ea496e1d234bd4cd9e6cf","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn build:lib && yarn build:theme","bootstrap":"yarn && npx lerna bootstrap","build:lib":"rimraf lib && webpack --config ./build/webpack.config.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","website-dev":"webpack-dev-server --config ./website/webpack.config.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"types/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+ssh://git@github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["last 2 version"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.4.2","sass":"^1.26.10","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","ts-loader":"^8.0.3","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","html-webpack-plugin":"^4.3.0","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","mini-css-extract-plugin":"^0.11.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","@vue/component-compiler-utils":"^3.2.0","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.4_1601803548299_0.9988866969670234","host":"s3://npm-registry-packages"}},"1.0.1-alpha.5":{"name":"element-plus","version":"1.0.1-alpha.5","license":"MIT","_id":"element-plus@1.0.1-alpha.5","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"71dcbe5a1b42bce452a33b9aa96e54de9d981004","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.5.tgz","fileCount":1064,"integrity":"sha512-SZ3aM4aaqOBbo0tovtqC3qLPCZUKZwrSJFWVx4Py0JrFtd6n2YH7d+seLg5HjM3iOfDtJPDJasqOy5aDZe1www==","signatures":[{"sig":"MEQCIE8DkHjWUxTPLnSqRBBlf9Wyycgr6PgCi/HoqcPVekc1AiBIlBf2hLmjv4HFASe0w5I2IcccGZdQgY7aVjKshiXnnw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4417395,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfh7R1CRA9TVsSAnZWagAALPAP/A2FAhpu0h4LVYQ+osKm\norlCgtqLYGcx5cPHHW6fSC8z+4EwbIeTZjM3aIvNEdnYBaGH3RjU3/ULNgQB\nQ7B88VhdRUJCA2IoJeP/kT+lWMK8eqC58rhhcXoEJHLqIvIzV++YdQmWBat0\n5O2TtZxUAgVTM+O7LmXFyd47hZAzt2bLPaJgdKW1aR+IXmj3sOGBB5b5+sOX\nISGm4KuhTV/H9o2v+fM3kUAKbkjYlTCFuz0fpYRQnhzULTOOfsvghxC88p7T\n4qtk2qPBY4IQ7bNWGHpB9HDHYB4Gf4ZJ2wNc5hXLiP7EmcmSD0d7f5AYpmvr\nf5I9Vor2mKf7rzxo4+Aw7Yji25S/kwT73E0hWzzRBhhmZhiEuGKvWidgq+yQ\ni6MEmXkQHNdH172zNh61fLxpZ2YXbEp6xZ0CBiQA6StDEY4jHJDJkIKHZ9ro\n7z6P9v8bSwILZSvTKxkAtTRvD4Jrc/2EDUtXTewPAc76PqNj2uueH2TFEiBm\n0MG5HuAHI4M5Is+WHB9ZXaXiDMA5OuXywFTt1i6VeKOIRgUtJd1O0PqaWz+o\nuX24lbiIwdvozUsk4hVfe6pEgSGpKJA+VgII09KIoKB7kYxIv+JLDRPSUz+d\n5a21Ppm7V/BzKwJjwP7tbGwT1LyUQIX2FdJdCqDKP61U5ANsEih2MRBz1xmn\niELz\r\n=A3nh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"8786faf73fcc2e5928cc6125e6711c5eb889a0ad","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn build:lib && yarn build:esm && yarn build:theme","bootstrap":"yarn && npx lerna bootstrap","build:esm":"rollup --config ./build/rollup.config.js","build:lib":"rimraf lib && webpack --config ./build/webpack.config.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","website-dev":"webpack-dev-server --config ./website/webpack.config.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"types/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+ssh://git@github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["last 2 version"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.4.2","sass":"^1.26.10","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","ts-loader":"^8.0.3","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.10","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","@vue/component-compiler-utils":"^3.2.0","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.5_1602729076646_0.9595087517645204","host":"s3://npm-registry-packages"}},"1.0.1-alpha.6":{"name":"element-plus","version":"1.0.1-alpha.6","license":"MIT","_id":"element-plus@1.0.1-alpha.6","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"5a3cfd2c661e28a313f35de6c98852e61f2fa188","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.6.tgz","fileCount":1080,"integrity":"sha512-izLA920vBmalpU6KOtBrf5hLzVzoXalXRWktffE/0KuRvDSNtA9NM9oU1yXU1OQ5pOWVgTpwtIjQXEZXJvJPWg==","signatures":[{"sig":"MEQCIG7HPy+LWOB1t/QscXuaITwj5iPjGDhJIC1k5Q5qn8yaAiBiJTpVLH7F2htkCiF0bN5QLSsyUE1/0yd3Kqc0p4X2Tw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4449324,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfiT+GCRA9TVsSAnZWagAAIEkP/3Xt44NwEPEr4KtZRaJg\nuUKB9lgtLZ+WoZvzFnAgYiigDo3Yf5t/QKCTaWiKnPenc4IW2ue6ryfjvyX6\nXQa6HzFBs15SNCByS2zKKBer5XISy30362dcaMRiG+4sYLUDXEE4Zriokj4G\ny76LyjazTfsy/lnCQbmtQE4W1bPFlumO0tK3/4VFTJOAxQcxr08tlBeZbEEj\nZUDHVKpdlXFX1iUQDYza4ypF9MLuMDlpWXfjm/jz8KM41Df0shShPJfw/mi7\nWitDwORXi/6eB0UrS0bDXwYQwMXVVEI80t9uQS6GWQJntuwYWZg7tB9BSmqj\nGJRBYK3ZXZ2M9ID5CUdbtx3dBBlT3F+JEIplD3lIG1lsEe31CNo+YBZbUKSX\ngMipcEZ6XhT2xRUe0tWzBj1q9q9RONxEaOZCHV1sOKjGvLiKgYy3MhQVWGat\nA4/BVp8b3PblR536ZxTZ6d7+1uK4fVvYB4O5nuvldta6xrG2ldlHehARe00Y\nOp+gywCwb7s8Vm6WP4Q8SVxE7i11LzEwMnIi9hHVNG2KelhLaUBWsLM7dC90\nom0G0BYxspotiklSpfsxtIo8Moz0Ax1FuAVCuIKeW2hrCurSSXz5qrD2MkzV\ndGGNrJyYia7Y2z7j83IVoij+xEFWTxpZFUsG6NvenMDdX7El4eKTt9S1+fVt\nWgnD\r\n=fZKg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"72d3311abd0930988d169e7e2ce6f01b21758a67","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn build:lib && yarn build:esm && yarn build:theme","bootstrap":"yarn && npx lerna bootstrap","build:esm":"rollup --config ./build/rollup.config.js","build:lib":"rimraf lib && webpack --config ./build/webpack.config.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","website-dev":"webpack-dev-server --config ./website/webpack.config.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"types/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+ssh://git@github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["last 2 version"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.4.2","sass":"^1.26.10","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","ts-loader":"^8.0.3","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.10","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","@vue/component-compiler-utils":"^3.2.0","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.6_1602830213913_0.5663378575396143","host":"s3://npm-registry-packages"}},"1.0.1-alpha.7":{"name":"element-plus","version":"1.0.1-alpha.7","license":"MIT","_id":"element-plus@1.0.1-alpha.7","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"a24ee62c1655101c34481f12cc8a9e8e64c8df0f","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.7.tgz","fileCount":1184,"integrity":"sha512-Ou4QJd18/gxSUuFm6sRl3IzQjZq5+u+7GgFaV1xVcUUth6EOhkJpgoSHlmqIMpowLoYGs+qgUEQcX1xZ9sm9Kg==","signatures":[{"sig":"MEYCIQDHyXV/cTkoKO/PKvx+lgJNRCAekVwy/iqxy1XhoP6qoAIhALZKS/I3MiR0Bj6z65udUL12NnEpDYr42QE8K9Grg9Vp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5234435,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfjnrHCRA9TVsSAnZWagAA3UUQAIUL+bFLMzUlKHeiiptz\nonCkPU7Uf9Kyu0bjGucJXEZE5R/fYLfY83lEWXw/Pt6iGC8VYM7m+6Fw/2ib\nO14QhJaWTOkI+LWIS30fJd00agmbHFbUiylqjNcixHDSgeb/wSoyHjGq2Ie1\n6GGTeGAvOs2F8Wm7NIsE7Fmoz+xQ78dRhkQvd6mbkw+s5HArpsSUSC3BZZVO\n8TUOdxBkKQauIDX16yXKzlhiI6aVuehj6znlc/M7AkJ6thYpFVye74fopGon\nWzxP8zivh2wbfupefcFS9reu4i+PRjzWuvn84toEMW7b6CUbt3IpgUF8gayQ\nWiDQrPGw4ZDKzI+HoidfkVYGJnq8ZaVLkSRS0jFx0Ib/uK7/uS6H89akSU0p\n0DQd6JGhW6uNQQW6lAuqBxyxxP7R/w0DrrNLMtMqM/yjLAJeaJoy5XA40Z3s\nYZ7ChB8ITx6tEPHVW53lB9gU9+ck0D/E+WlDidyrecmkgpAPh2NfLXvZXaPU\njjZFGHcNhCG1vVqNdwrcULGKBq7xcTHU0L/M8tYveqGyAtstqfVrddZis2jh\n1vjXc14tlhrDQvFmYBdVRvKZXO+E/UDIuKuDnjuuSqiPyBQFSfepZdQUx21z\nzRy/T/Ya+Y1p86kUlgVniPJOAhce3Rsp7Db4JoUXVqovrBQFebNitN3ma8F1\nnOOz\r\n=xdg9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"0454d3482591c1726ff54a53b8472583a8cedf24","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn build:lib && yarn build:esm && yarn build:esm-bundle && yarn build:utils && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn && npx lerna bootstrap","build:esm":"node --max-old-space-size=8192 node_modules/rollup/dist/bin/rollup -c ./build/rollup.config.js","build:lib":"rimraf lib && webpack --config ./build/webpack.config.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","build:utils":"cd ./packages/utils && npx tsc && cd ../","website-dev":"webpack-dev-server --config ./website/webpack.config.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"types/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+ssh://git@github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["last 2 version"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","sinon":"^9.0.3","lodash":"^4.17.20","@popperjs/core":"^2.4.4","normalize-wheel":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.4.2","sass":"^1.26.10","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","ts-loader":"^8.0.3","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.10","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","@vue/component-compiler-utils":"^3.2.0","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.7_1603173062864_0.466395905972508","host":"s3://npm-registry-packages"}},"1.0.1-alpha.8":{"name":"element-plus","version":"1.0.1-alpha.8","license":"MIT","_id":"element-plus@1.0.1-alpha.8","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"e958ed4a3692ef2d3d7997b8ec991373e679e6f1","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.8.tgz","fileCount":1275,"integrity":"sha512-8xw1EVmeqH9eCcP1fHoLrBslFewJ6Mun22tc3PdPbHnSIxxwu5lTdj6Qh13191dOJ+4RS1iD8e06xxm5yA9hQg==","signatures":[{"sig":"MEYCIQD+ntQZK4l9LFm/EpnQm4YvzfwGfXTYkyZrxlQRhMYp8QIhAKHWZMjE/0nCsR8VvfYE7z1PCesT48tYXljdPM1fTXpu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6068502,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfjoCdCRA9TVsSAnZWagAAaL8P/3ZWhPkG65dyJtc0pK6r\nDzrUjtZWhTYscoXgA0xMC7pVk0+JuOV+ihamDAQmKagruoPo+Ch4ABx4jN5/\nK2vLDJYGTjFRQANCx4ESlCUqxme6nQq6//iqImobd6756z+IQ2euByl24Q94\n/vPQM3JEHmpfQszyWPGsuyPnNgY7vCRpWkP/H0Ywjr1GwqhNnlkPbwjTPuZC\nhVYegL730xs3NBvq7XDXrGqYz+4RTGp+ZxWRaB0M9LRhyAWhxff91h1TL5tq\nuoX8N3XUo7Ky0wV9lpNmUT+DPTOlhowywmV1IZYdwgQ+2cgJG/es+n765wEr\ncjSnjgWC5efrQ9oN2I2Byc7D/y0sWJ8gYJPLFI3K1lS9/p5e3Ah60XaqF9Dc\nSnTlV1VYheZZhZ+wDfBtBmgbCkPT67EqOARnsJJbUu75yUEz1FskhCvUpLQ8\nwyFYMknC+MQMKZxnHna4RnUYKHKLF1DRsIBXSqfjwmPzzSXX54wK760VTwIv\nCb9IqwNLnvV38VX5+5LFuLqQTCwq9ajVzw9mxUOPM+24mYBNP0ZogTJ767QI\n4CrGaLjV1kkko6jFM/m+xPj4JhDAaW9AB/iR1KVNIBG/Shi47W2pdPhW94Lp\ncVyv3NXSGlU70UUngbU9mhVTDB3GiHOszGrtQSd865ahIGr2d1e127nOZIDs\n40oT\r\n=kehs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"b66c7494545008b624f2d25f3b6a42b4e1bd2b6a","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn build:lib && yarn build:esm && yarn build:esm-bundle && yarn build:utils && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn && npx lerna bootstrap","build:esm":"node --max-old-space-size=8192 node_modules/rollup/dist/bin/rollup -c ./build/rollup.config.js","build:lib":"rimraf lib && webpack --config ./build/webpack.config.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","build:utils":"cd ./packages/utils && npx tsc && cd ../","website-dev":"webpack-dev-server --config ./website/webpack.config.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"types/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+ssh://git@github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["last 2 version"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","sinon":"^9.0.3","lodash":"^4.17.20","@popperjs/core":"^2.4.4","normalize-wheel":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.4.2","sass":"^1.26.10","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","ts-loader":"^8.0.3","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.10","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","@vue/component-compiler-utils":"^3.2.0","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.8_1603174556725_0.4149687002832916","host":"s3://npm-registry-packages"}},"1.0.1-alpha.9":{"name":"element-plus","version":"1.0.1-alpha.9","license":"MIT","_id":"element-plus@1.0.1-alpha.9","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"e15586b7d34eb47ec512c07fa1ba0b5da50b7bb3","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.9.tgz","fileCount":1275,"integrity":"sha512-yjqznmG0MJSSG5O74Urv8U7XjUX2JRmm/eCz4l7ycxb6CoM8fFA0pwQiH8XMn8EqJHImdtvIh6gFxl3ehnKvlQ==","signatures":[{"sig":"MEUCIQDjDu3ONmdDg7rIrhGSTFri0ekQxY3ytK933KdDLqSqXgIgQgOOgjY8AHBrf1U2VhTk+zpv5A/K7H7uBBBZFIOvrSs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6072495,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfj/unCRA9TVsSAnZWagAA3YsQAJgL7Oi16iNL3pO/gVUs\nWg6HssUP3+kZsmKGOehE0LS2VfV9LW22AuUhAdjf6x1OkvsJs6g8M9nd9Sbz\nK/Brb9VTWib2rchBZLZ011MU1I7m53qmmhiWVSGzcw2VnzBOY0Pox27IcK3r\nahafxtQJDdmSey761Fgw4MrUrPfHCfCrja6fb12bSR/vVe7nuh4j9/TxBVTf\nZarllrbAXJWZ6PAAaK9zFbrd05EG0Lowu+iMXBsgcvqeTp93c5lcRQ7jOy6n\npUsRViC0kN2FsAXPOXYVSh2GVqvVT7UANehbvZZpb7ZFXJNUeTtYQdWgR8KA\nsZYfrvSV80J+FMZ0JKlSHra9jTuousf7a4f2/8osh0ed3CDb+XRZw1+d3CsF\nRU7xFrr68pAZesBIXH6Tc6VNuDSBMXChoywS9XoqISC+dZVk9ySyInd9VirW\nyNO8jlGQNjhPh57VcrNv/cd/yPdBPkoICY8w8r5LZ3z09ASCq0rFyDRBlwBI\n581MfxbVYkts31Zxg9PG2M2bl2k9k6aSV9srS6e85wG8aHG/qyBMbV3EpDhq\n6N4PNcqE3tA3tspEoQAPeA7sPIANXi6qxmN6FGiLlsEh52ilZq4XiiwLWZvB\nu910aEFbrRqR4M39f9spjoeHzRTvYbA7UchIgL/l/EZAAMvDiGBitlC5eh15\nyVOJ\r\n=SDwa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"1788cc4733430df55421fc002658e83e7aadfa44","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn build:lib && yarn build:theme && yarn build:esm && yarn build:esm-bundle && yarn build:utils","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn && npx lerna bootstrap","build:esm":"node --max-old-space-size=8192 node_modules/rollup/dist/bin/rollup -c ./build/rollup.config.js","build:lib":"rimraf lib && webpack --config ./build/webpack.config.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","build:utils":"cd ./packages/utils && npx tsc && cd ../","website-dev":"webpack-dev-server --config ./website/webpack.config.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"types/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+ssh://git@github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["last 2 version"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","sinon":"^9.0.3","lodash":"^4.17.20","@popperjs/core":"^2.4.4","normalize-wheel":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.4.2","sass":"^1.26.10","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","ts-loader":"^8.0.3","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.10","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","@vue/component-compiler-utils":"^3.2.0","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.9_1603271590504_0.21762564919721528","host":"s3://npm-registry-packages"}},"1.0.1-alpha.10":{"name":"element-plus","version":"1.0.1-alpha.10","license":"MIT","_id":"element-plus@1.0.1-alpha.10","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"7d272daf03de0385f9dad9da9d94d247aa0312bc","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.10.tgz","fileCount":800,"integrity":"sha512-8UmiwtsIMKz/+u/CUvrh4THRQSEvRp5dcT+PJUkIbpSfY7i1IsdMwHGRYk7L52BDo6slFl99O97ekdt8ZRGoIA==","signatures":[{"sig":"MEQCIBffN34QtLkVW+L9+tuSykc/XSfP0G505y5EMvrPU5+lAiB+Y3AETluD/eL1l/XQDUJzAIqxJ6M8hyF72IiPlwsLJA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3808214,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfkoAgCRA9TVsSAnZWagAA2REP/jzBan95L5g871z0oQhE\ngHoPLy+H930Ud9BXd+nwXB+apEeDiJ/t3eZRzZfXX+Bp6y+1M11W1cTvbptK\nIpdIo8opiNKARoRlTO1VJSRG57wljnZsl2cH8FwuGq0qOYt/Tw4fL0sL85s8\nOoxJazilq2WBcUDpLaGP96JasswztpwarqZX5qC+EU/EFUFZtTjK5/5Xi5Q+\nIQXn9aa05v7vajrznzc7gjjwWn9bckPf8YGluU7L8aEQS+u4XTmqiJ+FRhir\n7vZSQwVp3xGPuZ9ssFJKagr/FYPRCtm048wRE4FepJyk7yXZQj0Ni87UkAxT\n8MA0ROdqI5Erm5DQ9EEeWqMN7q1ObUd0Vg2le32YVaEZEFxDx0999XZvkKuZ\naMDrk25GbHtmF3LDLEIlJs3EhUvm5Nq//haJ8hObukczanLNwlpSW+FvH5Lj\nZ3GDsg6TEuhrT9b/UJsoFEepuVXWgeGdagnC42O8+aVCzWMW54epk1T7fHgS\nrN4Wgvmp0bq/ZkmfdbgaosPOYu1y9/aQlusRnxJY9KBkJMBGWKRyMry2BhRg\n1qC2oAObku0b6N+STNgVtavNkIkOIgsWJNypdHi8eS2oU7Ct8gY+UV5EQSde\nyfRHmiPmeUgfkcq8B4aB7dKYMAonNBOmqqjpVAeuGZ8MyJU6Laf7CJcuf/O+\nuvOf\r\n=DYqR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"bfa7a9941935552fb94cec23a6e4ab46e8e5d047","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn build:lib && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn && npx lerna bootstrap","build:esm":"node --max-old-space-size=8192 node_modules/rollup/dist/bin/rollup -c ./build/rollup.config.js","build:lib":"rimraf lib && webpack --config ./build/webpack.config.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","build:utils":"cd ./packages/utils && npx tsc && cd ../","website-dev":"webpack-dev-server --config ./website/webpack.config.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"types/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+ssh://git@github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["last 2 version"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","sinon":"^9.0.3","lodash":"^4.17.20","@popperjs/core":"^2.4.4","normalize-wheel":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.4.2","sass":"^1.26.10","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","ts-loader":"^8.0.3","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.10","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","@vue/component-compiler-utils":"^3.2.0","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.10_1603436575722_0.26154884839586723","host":"s3://npm-registry-packages"}},"1.0.1-alpha.11":{"name":"element-plus","version":"1.0.1-alpha.11","license":"MIT","_id":"element-plus@1.0.1-alpha.11","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"93831d1c9fe8ada069bf96e36ee07116a5882914","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.11.tgz","fileCount":799,"integrity":"sha512-cTp3Aputz3qkkVuwmphM7tbbE7C+VADWL7Si9fftT1YAJ6V1wpxlegt68ymy8czrc4vPmj9/L6MPM2LjSsrvpg==","signatures":[{"sig":"MEUCIFi4pkVG15PBoEml77M5Kdi4+wE9gLq5fWDlIbqIf9E9AiEApLGoNxLJ53njA/1TTHtvS7NS2pxeNRr8SKNzjep+uJk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3805063,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfmRIBCRA9TVsSAnZWagAAxnUP/Ahjt88Z+pecDHDNOQLk\niJv2FMRKqACUfA3H7MGm8R7EFMQf4ZbWFclJjYaL7U8UyW3icCFjYp93bMLi\nJMnjZjdwTNPRzxadZ/8WIGa4Zwtzjp27cX4PgL/phEu7Z/cSRs2O58nz/SR1\nDM/B+uTee0nb4ocrjRYrNgfx8hTYGUn9OsN3fkgcj7G5/NDJ/Ux8qmSxgu/g\n0qb+rCMX4kmghGjJiyYquL4a5dGwBlgUcVYydReXPWK5wEgn3pF2qnlOThDx\niE/xTppr8juQ5y6zlXN5tmgUHpy+Mig95KMIVALDII0KDhgA9jCIJVCi7t7K\n9Ze70lGaOZYVRYZ7/hLMiBD9MZy+GoTnlkcLV8WJiIB9ZvLM4Wz5ZF8drj78\nfkfb3YT/Rb4R8uaswsjyCKqaZgPl8vHUKAj1mabXhfN2Rb4sHKEzHYmCT3sZ\nDCQXEINxJU4ZRRV6KZ1PWNDU3fGcuzMI2HFSgeeEC/uBgxnAR75jIXHqHWCw\nLCKtPQeJOzdn8lNj4rv+HNJOhzwcQMO7IMCVOtUG52nyUwdKK0mNgLHF7LSR\nAPBuCZmEgsbsEF/BUjT5zYAenIRZJCp9oMMCtQQWljP9P/fOG4Y1mD0x7oSB\n7oiB38GlmFSw/v0NY5glVJrQLz51wTgnn5I81cPlh2a4oIsOHhl4+VqH494d\nykAm\r\n=Jgjr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"9cb4aeac32c02e4489262150864b2b7df1c0493d","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn build:lib && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn && npx lerna bootstrap","build:esm":"node --max-old-space-size=8192 node_modules/rollup/dist/bin/rollup -c ./build/rollup.config.js","build:lib":"rimraf lib && webpack --config ./build/webpack.config.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","build:utils":"cd ./packages/utils && npx tsc && cd ../","website-dev":"webpack-dev-server --config ./website/webpack.config.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"types/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+ssh://git@github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["last 2 version"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","sinon":"^9.0.3","lodash":"^4.17.20","@popperjs/core":"^2.4.4","normalize-wheel":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.4.2","sass":"^1.26.10","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","ts-loader":"^8.0.3","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.10","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","@vue/component-compiler-utils":"^3.2.0","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.11_1603867136499_0.9363777555469575","host":"s3://npm-registry-packages"}},"1.0.1-alpha.12":{"name":"element-plus","version":"1.0.1-alpha.12","license":"MIT","_id":"element-plus@1.0.1-alpha.12","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"a832318af3574af410a94185af8bbc1f606601c5","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.12.tgz","fileCount":1261,"integrity":"sha512-M/4jx3yHpKh4FUFFeH80Ti3G+E97VoHxeqFcaEp2IY1njsl+2oxnMSjf4Ji54Vg0C5dnywEYT6g8T2ZM+q63+w==","signatures":[{"sig":"MEYCIQDn99XIbX09fJ9bM7U8Q7ceVtip68TUnsLpQiQI8/u/KAIhAO4lvKc7IyWhPPkillcnFpPJc9PgmvnGiSdySuRjbLEs","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6091647,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfoCWECRA9TVsSAnZWagAAAJ8P/1HRG/dPE1mRfSs5YVxV\nrQSSxUXmocS5p48cJkwDVDfbC7xuPf68l/6RwVUnGNhUFfpHwc9uPr0+i8vr\nn2eRJH9zChAZDdzbHI/9zJyHOp333T/ukqui857CvHMoayAMztsVzDPhJpUp\necVOybH+AoHjYtTwoo5sNlqShe9Lk2Gyip4hJiVDgeZeoUho/kStaHAqeKuy\nFL+wOgP/NeL8W530x+MnGFRNPGv6C6OUU9CXZXdk0jWndc8XkYUZqoniAGJD\nDrVmpTdwTs25YhNM6mg8LpzmNA6XQlSb7N3kG/2em4dzRTnJwR6vyYANz9+H\n+GQ/8/4hTU+Sv+MO3sZp/VruAMiSN0lRBDkUnq/tYuJw49I5li01NHSUVfrD\nv2RbMcK2JNNmc5vwPhoFIIiQAIeYBHOlClBfhqKr3nNcFAYTuJQqwveONhdf\n+iCSPDRnUAGKTZLUW+/0zxow1CUfqWxDNc+Yxf3tN9pdd6XLFlHhU7An5z7D\n9nfbTl0QHv5g1n9o/188kUkRZZJPw+gNvBlQqOelszdkeZNjgo6HL+sGjeSi\nfKZgpRLpoZJOG8ebxcduvgQSu4CdlkL77ch7fIrx2Sun6LnigZ6DQw3laZcB\nt4KuVPBuGgQDfEAOk0O/JkthFJpS3wzwKblosQEq/uuLav9iwy5QfI8JD8ks\nKBzN\r\n=MoYZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"72bb569ce9ab2b1a5ec6f2672611e06b4cc3b38c","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn build:lib && yarn build:theme && yarn build:esm-bundle && yarn build:esm","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn && npx lerna bootstrap","build:esm":"node ./build/bincomp.js","build:lib":"rimraf lib && webpack --config ./build/webpack.config.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","build:utils":"cd ./packages/utils && npx tsc && cd ../","website-dev":"webpack-dev-server --config ./website/webpack.config.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"types/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+ssh://git@github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["last 2 version"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","sinon":"^9.0.3","lodash":"^4.17.20","@popperjs/core":"^2.4.4","normalize-wheel":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","ts-loader":"^8.0.3","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.10","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","@vue/component-compiler-utils":"^3.2.0","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.12_1604330883666_0.08469152229036747","host":"s3://npm-registry-packages"}},"1.0.1-alpha.13":{"name":"element-plus","version":"1.0.1-alpha.13","license":"MIT","_id":"element-plus@1.0.1-alpha.13","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"de80c52ac8e93c95f65564677c566e9ef5903c42","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.13.tgz","fileCount":1337,"integrity":"sha512-MHeEbB42vrC77PtRKKbxIijtssVm2M3+AP8NPJA6YVAWOtxNvXxA1z/eCjy2gdriTMvHDw+Rc9ytKbslnuMgFw==","signatures":[{"sig":"MEUCIFpFboFNXqrRfH/8fOGJ8kJlm+MoHkN09SbbAIFgsTCsAiEAob7Uq272UT/E+1wh8BpouWDkz21OwqHYOfxinYXMDF4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6320454,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfok9rCRA9TVsSAnZWagAA9n4P/0zZJnY0cZ7ZPMsq5QFD\nvjKZUHgYjkPoNa6vATvF3AwgJgQAfsqCFuXn8w0ZhHJgdlD5iT0+pj7fp1cI\nvPyfRAslCpNBXWaRhm216bOi+LzckvvHt/bZItcfgVciAI1EQz6SFudJwDju\n0InnNriRu3nacwSlC+GhQa2Kr80WU1g87u4SYqrUBPFzz26/QrRPNbC5cYMj\nTKP/CzTUaZgXhk88n2nBOZ1YykWiJJtKv4/6VDHsEDWYTAYUAkzVbxXNM1i8\nWnIZoUh9Bn4BUYLRLMe72eOPv8UhyFJZsShtJvxqq9DEfIwtnBSKlKzxHL7Y\n3sK4K8LkvSnfYK9Spehxfr8hbPSEQcowWD5z0CEUP3NMcWZ+ue2Gp19aKsek\nlTqkRgH2eOKtWVV0TnENRcsrWG47/se9Ol6kDdBjcGvKtFtgjHlPmmQoefl8\na0+trKKPKM5i51/p1M3afNWA2DLytKdr36pz7rGTYZSUvWBEXyFdoLrLSQW8\nNf0y/w/vepRYf4OSItMKwVUEzFHAZE3ksDWp4JKskmFMwRigm1n3sXPPpxyH\nVrAIksMHwVGwf2b/Q0TGPeYG+8hbp3sryuqhYeZ7AinkFC1ADb4TK7bj8Qcc\nqhadhTdKzdJQYD+x6u3ugnp4+c4yPYxbgmwN5tmKuUMsUufsp3Bokq9ta7M6\nJ76h\r\n=oGXr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"0109b468f114d9f98ad10bcb6ece0e40c6e8eb9b","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn build:lib && yarn build:theme && yarn build:esm-bundle && yarn build:esm && yarn build:utils && yarn build:locale","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn && npx lerna bootstrap","build:esm":"node ./build/bincomp.js","build:lib":"rimraf lib && webpack --config ./build/webpack.config.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","build:utils":"npx tsc -p packages/utils","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"npx tsc -p packages/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"types/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["last 2 version"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","sinon":"^9.0.3","lodash":"^4.17.20","@popperjs/core":"^2.4.4","normalize-wheel":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","ts-loader":"^8.0.3","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.10","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","@vue/component-compiler-utils":"^3.2.0","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.13_1604472682911_0.24458697587092582","host":"s3://npm-registry-packages"}},"1.0.1-alpha.14":{"name":"element-plus","version":"1.0.1-alpha.14","license":"MIT","_id":"element-plus@1.0.1-alpha.14","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"42b89103534e4edbe11032ab7c1cd07784a76054","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.14.tgz","fileCount":1337,"integrity":"sha512-3TPpqFrNCgCFRpS7Z4KlgfCNNI1H/p4EnDqxSKK6ZPBiDLsWA+aRbpP0pfUP8eYWM7PGkfM7u/SjVFPuFsIouw==","signatures":[{"sig":"MEUCIARxpwFjMlUNdMZkUdH1NkPvelEBUeFsARm+zc/jyY8AAiEAijjUBAPKXMsilDQb4ZTuSKLgMHoIUyqT3tYKlL6A8T0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6320353,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfom7BCRA9TVsSAnZWagAAA3UP/1Yzdvs/Bda6AdahmCfU\n9DzNlhJA7MOMeUOHOL34MouWRFMjBiPv0KoyaJZ0um2y/z+vmyLR4EK7K4ty\nc1hsQfliZh4g0aX6cnQ8nWUn4uQXUQnQz+rXMTI4LSog2aRgMlp0tmBB1i46\n/ECd7hhwhEiAEKjizZPxsrCS1evPrrTytZW08QjMXntvP7oUJpHdM55HuHdZ\niIbZetDTyooi4KoQJarQu5Fv99leIq1yMlQ5+IGzqbDc9snJQMuKvGLS5Nr8\n6WAE9P6ULz0MK/6uSt3srA5hudXuPp26IRvR2ihqYt8TNRVHqojj2jxIhG4X\nCiodyWNw2K2AauGfQJvngLlwiijLwib41oyCgxKViRh0bEiG5sfD1nqx3vE1\nVSN0oNurma1w446h6VtG78QVb4ZOZynOu5x99cgPhFf5V2HlcnuUugKlGxrX\noY00jGUq4TMttXyIYDc6gM3c6MPVR6zF/rdt9Blp+X3INq0vToJuowZLREeg\nm5p4qoUdqQgMidVHm8bCcChVMzMYQokfnEEH1RZGqlDnNBWh0DFFFa/CrO9j\nsVkPiIQfNwMINyr4iRXLhxYlbqTJFV8UJvIJizcL92mJeqNE5W0vrF2k4qRG\nNLcVeNSB7iuUhkpgCMIrsv5SoGTZFIJtA+QsXpiP5+xBkcJ40AH1WhsO5w2T\nAIDh\r\n=8DfI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"4c65c4b6e712c6651f87738ffa310d1a4fbdb62b","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn build:lib && yarn build:theme && yarn build:esm-bundle && yarn build:esm && yarn build:utils && yarn build:locale","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn && npx lerna bootstrap","build:esm":"node ./build/bincomp.js","build:lib":"rimraf lib && webpack --config ./build/webpack.config.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","build:utils":"npx tsc -p packages/utils","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"npx tsc -p packages/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"types/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["last 2 version"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","sinon":"^9.0.3","lodash":"^4.17.20","@popperjs/core":"^2.4.4","normalize-wheel":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","ts-loader":"^8.0.3","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.10","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","@vue/component-compiler-utils":"^3.2.0","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.14_1604480705150_0.6912510194420478","host":"s3://npm-registry-packages"}},"1.0.1-alpha.15":{"name":"element-plus","version":"1.0.1-alpha.15","license":"MIT","_id":"element-plus@1.0.1-alpha.15","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"6e8293fca8dbb125d511b768d0b7c86b262ba186","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.15.tgz","fileCount":1391,"integrity":"sha512-b0WT/k2Qts82fqu1Jkgw6jgumbDFlWi5ztwzyZ+QFn2PLNsQ5gCYu4/OcMlYDWnahkLQAHx8MXbRLN5REN9R3A==","signatures":[{"sig":"MEUCID93IhJyyDg4gau2YEBkRHRa4mB4fTeUC/gb6ogUaYivAiEAie8KdgrDmIZPEMzY8EdR5bAe7NCvKouBLpzkIEoBozM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9362947,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfsfNsCRA9TVsSAnZWagAALKkP/1lnY5VhTYH/atHxLK1x\nbW0t4uiDLdjhkSCCUHbKeKy0RgFaifq3bXqNZ5GjnEzXk3OyUpuNSeHr/v+F\nmY9Atr9t+k5PSNTe+aK4pKdKIsGhkQ2NlgTzqzFlNFhCC06Kce9mCZAW96ek\nLorJHWmFKG2hB8xivhyhD700eTpYTDuA8Kl+CVasHJKsKqXKr4krsjxM+hTw\nhvxNoK0QQC6NEsPxbzlEW3h9Kx5zJHBj5ZnZBYKZuuCdDGp/Qrt3aa/bXfKV\nvJzCkpcb/rkOzbcjyLQUoKz3tL+pUB3OVanOHC36ZuVzdsGWXPncid8g9Ix+\nGiCjnr5KCVqUTCnz8keqXZjub3jTAgDGafnIH6ZpYzCmXqmFJFYQzQqxls5a\nSgL6+sILBZa9bQD0S25vBgSvnEMvXJk4vOLVeOzQl/RtzMKIjLsPhywlViRq\nxEg08eeKaCCi2BWeEjPxizoOlHc53S4bMX6d523YxLGt44nHkHZhPdn9Jbh1\noXBKPVeYRyzPkmKjifBDsE5njyXOaiq06e6k5qnuY0CRrO5mh/9/2q3goPfu\ny2rf0aPocsr4HZ+SS9iXi6RU4jX8RKs7Wc3ini/e0YXo9yY3jSSN/ziuHwWj\nNE5uMTQG84dMNY/lnFTgYVlzgdS47kL0XdhUi0lFZXk8NEDdCaK+cnWr7kLM\nQvRz\r\n=5BrD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"3c1fda6fbb07452c495c5cc634f7e9058177b58b","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","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","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn && npx lerna bootstrap","build:esm":"node ./build/bincomp.js","build:lib":"rimraf lib && webpack --config ./build/webpack.config.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"types/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","sinon":"^9.0.3","lodash":"^4.17.20","@popperjs/core":"^2.4.4","normalize-wheel":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.15_1605497707461_0.3704832070232531","host":"s3://npm-registry-packages"}},"1.0.1-alpha.16":{"name":"element-plus","version":"1.0.1-alpha.16","license":"MIT","_id":"element-plus@1.0.1-alpha.16","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"9b4c977da0312b268dcff89e3a9c4d5ed296a3dc","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.16.tgz","fileCount":1391,"integrity":"sha512-RqgAc78RHtIfmoEhLVhUflwFTf/nZAaCR3ZpuClhT6V936Zm3OPCd2copz4Wc+tIQcR4dLSbsN32N8YT1FaVyQ==","signatures":[{"sig":"MEUCIGeJoBNu2jpX+RDRT9Jq2b+FUA4abqfp66jmRD6xC7s6AiEAxD4Q4luA/hopc394hUhmgUnBEH/OZkASdglJEj+QBws=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8926354,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfty/0CRA9TVsSAnZWagAAF28P/R4FkKDVoQ43Na+Smr0v\nfm7g+VzJg9YPetda0xlAlha3KOPiQb3cagp5sBwfflh90AtddYM/6fpCB3nS\nf6aJqcjEmh/y1IvaA/VY/FmMLlo5dM9u1sdri0UvwoXey5PQsRe3Imzypf2/\nhX3b8Gbvz2KEjffGKs3b5jC8nOIR+AmM8jce3BBoBI6gP53gjpHnD+ytQz1l\ni3HHrLq3I1wEb6aKXFsdhgDaAfJvVgJkxznpALtN4fuJ6+JkAwlk5HDVGUvb\npOjr1WHRQXV5o1bOx24RL5b85BD98jDzUYPDJ+jWvs6UG2bkn5w6JSTfafm0\nApCTIxNGYl6l7+VpvCH2cL/9nRR1sgAiEIEKtzaxF0pSMDkXT+G0IMTHxRFI\n3Wel60GGIeoyBtj5WjOwT/tHTncmks6pI7kwSUAP6dVsrdm1YK7K/EgDRFgu\n9UloZjQFb9l2eBVa7NBxp+3oqsQdWbfhXXvGBfC4JDr6j/yeYtRAHT4G7Cs6\ncSRJwLZifY4FvmUwkzb8+W349lcHWxCL9l1kjrYIwPclIffhh20W8tgyQVk/\nD1Tudm8r/lQF1GWpCTunQXzSXrt9tj7UeyRtAUqHCeY9WrUiC20M9Zmm6nrm\nb5ioh+oeCeO5i9K1lOa0wTnxYtVjGXZhBCtnCeBSi3ZD6nb4IFO69XF9t7Hj\nCjIA\r\n=pcfb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"58f33bd8d83fed8ac71111f6fa112c88bea82a79","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","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","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn && npx lerna bootstrap","build:esm":"node ./build/bincomp.js","build:lib":"rimraf lib && webpack --config ./build/webpack.config.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"types/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","sinon":"^9.0.3","lodash":"^4.17.20","@popperjs/core":"^2.4.4","normalize-wheel":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.16_1605840883389_0.2062413016569642","host":"s3://npm-registry-packages"}},"1.0.1-alpha.17":{"name":"element-plus","version":"1.0.1-alpha.17","license":"MIT","_id":"element-plus@1.0.1-alpha.17","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"bea650e1b7581c6e3fae6035b9472c4909c056a6","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.17.tgz","fileCount":1497,"integrity":"sha512-BkZAAPJTcT/ZoRkKTs3QdyJri1oILPkn1Ftzyu01V2TGek+QRg4fvybMEK6GSLx9+dSpPNwH30p+jf75/VotNQ==","signatures":[{"sig":"MEUCIHLj0VKs/0Rx/IwsmN2ZaxsygrAqBRGewLaYyFHZkzYmAiEAw9sXtAXUCQdbuP1hgvI2en/ZDGL5jP4/iUOXIYxLL00=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8982618,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfumysCRA9TVsSAnZWagAAMHIP/3EhIv0vCoPUgb/HGBno\nOWaEghYc2xTffUEBaYsAUGf74nSRI0q4NVOshVoTkZr/hhsYv6DycgV3sByW\nNvHYjKj0dI2SJKSjZKQY7jQ5gqWW5WirfR0Ul5gdyQ/yUUBWG8OXIPZV0zjy\nqHmiUNZy6gLeGEz4MQeD4824v1S7uhqKj/bHLlrIi50eG8oL1UwPYFZG1PPX\nQyNYOaRaUI9oWiyOXBt7iKZsYaH2tp/sn2htp8jvGYsD1VBw3x9ozPJrmXjk\nMLm853gfBGgeCGNheB3cwn96x1tWac/bVhbmEnUn9bRS7XuU2JzQJgozxsm1\nH8feBLm7PbFfLB9wD1S8FwKtOmrCqg6AihVfy24mk1KInEdWGoK24NYodn0O\nQ58AaCCuZwxsIKbiW0GGwm/LwRGlyG4qXEwblcWr38p+Dl3vtgCbGI6MXk3U\n0xOf5Qg8p1FKDdai3YGlTxlDytXvJa6Kx24duBCYibBk3KCwioVNMzvv0uLH\nYJuxA/3d4MJHofZLJB+DjNDFQYfLtzYBHLMlQFvLZVw+QE+JR5/OwPmwbwmS\nnuDJBiHl/+IZFwHa+qBvexUlDBsRhejnO11fyU6kcrjQCxKGmTAACYzF87Qw\nxB41vS34GgKShDgT75+hkia+L7QyHQlHh/v6Szea2iPMpBYORR0NHVVK6x4T\njBb/\r\n=FLm4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"d8238448c19e464eef1932b411fd942d44351827","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn gen:version && yarn build:lib && yarn build:theme && yarn build:esm-bundle && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn && npx lerna bootstrap","build:esm":"node ./build/bincomp.js","build:lib":"rimraf lib && webpack --config ./build/webpack.config.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"types/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","sinon":"^9.0.3","lodash":"^4.17.20","@popperjs/core":"^2.4.4","normalize-wheel":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.17_1606053035770_0.7586269147109659","host":"s3://npm-registry-packages"}},"1.0.1-alpha.18":{"name":"element-plus","version":"1.0.1-alpha.18","license":"MIT","_id":"element-plus@1.0.1-alpha.18","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"c0f5eafa5a57d7cfb6047f55017703f525f612e2","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.18.tgz","fileCount":1497,"integrity":"sha512-/uH01ig1kB3C49psqLRvrhZXmTCM5dQDGfxTo5BeljjjCMIeYp6ogkGusipF1WovmqZHSMrlxck3iUqVXNeDHA==","signatures":[{"sig":"MEUCIQCHsiKYwyivUyH6qWoiz1NGIn5SQIE6L4voFw/PlJUGxwIgUhW2XFKLn6GEWqOWj+3PzwbPZnzXcQOv+djkCgn7VA0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8982878,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfunlwCRA9TVsSAnZWagAAISoP+QE6sXRt2jZBNKHA2+zO\njfpcfVdide9hIAyOOsae6wXaL/P2VHogPrwbaaFukbcjNhJRiW4Z68kTkV65\nYz8zCfPK/FDyV1AwUThICtuAToRF58g1VP4r3QS5Y4kW7mjPKoC7sSNTfJDQ\nyd+n/VsY640YoO9DJ8DTAJuKgMa+RHXUTo/1RF+e5c7uFuHZG0F4w7WF4g0a\nuFGhPNsWo1bxQMr7PmrLGG4IqZYi+S0GrJZLe2uvkGb9FC6RHj0Vslx1Ap/y\nY32SLHgRdo+T8ArqQ9osUKE7m3Hm18f19X3N9e0u3TWne2/P/x2Bd/vOeliq\n0H7WI6Pk0/3GcfTWsBZ4nwBY0KjX2DyXT2nnYr8dY3qluE9Uo4xDncjbK1lD\nZBuhAv9AxA9bUf8XcamzA9YumbDapDgi1ETzjOHRQu0hNYOkFFpSHQ3xjN+0\niU5spD4IKou/af7B7U1GXDiHVoUA+C8P1fOPH5p/4ALR22eZrdakkAjAu8k/\n3AOesKoN5Bv6s59irK6JTbYSD1NrvxNbasiQT0cKTcLzGiHLxMB4YdIDqkVY\nliq6utaIYW7iGehCvRyIIlbYNZTHt8qIZLWolXvZtBNK+iEuh6xAZQA+GHf2\n+bXye2ipSe9yOqLPVNgOb+qepVt8cR4rMNGfHI0uPC4Ma8t57gU6S3uOr4oF\ntAQU\r\n=/YTN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"55d52a21646dc019ea9904d84528a127e6854170","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn gen:version && yarn build:lib && yarn build:theme && yarn build:esm-bundle && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn && npx lerna bootstrap","build:esm":"node ./build/bincomp.js","build:lib":"rimraf lib && webpack --config ./build/webpack.config.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"types/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","sinon":"^9.0.3","lodash":"^4.17.20","@popperjs/core":"^2.4.4","normalize-wheel":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.18_1606056304123_0.3037390009212073","host":"s3://npm-registry-packages"}},"1.0.1-alpha.19":{"name":"element-plus","version":"1.0.1-alpha.19","license":"MIT","_id":"element-plus@1.0.1-alpha.19","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"c9b77f378807dace8e8464ff5d24fa6b1cff9559","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.19.tgz","fileCount":1095,"integrity":"sha512-YFPCKH099cnK8ys6u+jg5KdX8/0wOkb2LHLS/t4evo3Bm+oQRvNsapkd7CBfOvUdshtlAOUJ4VUaPKWQKHH8eg==","signatures":[{"sig":"MEYCIQDlEt2JEO+vedPKgIYrzmbhvXoHdoneiFhaGJ1/4BekawIhAPTc84kPEO9nP1S2XjdOwEZuxaXXGZElYjW4uHZi3Vb0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8340268,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfu1pFCRA9TVsSAnZWagAAgUoP/itB2ZI6CSXWDmdIzblK\n2uZcEUnboChR4QViVS2z+0hANokh8bkfQq1ya9YNThrCy7gSNi1iiOYO75v4\nY6OfO151yzl0dza+ET0tBkHlWTKX2GCKvuDx+gDVCKq6bbu5RjcXi78OInWo\n2B16+ACc7XrVrI913GCKc2Tn4a08QvU7+q5IrBkDuDcOvGJVwG3tPyicBlAq\nsEooVsCmQ4anDcwhgwuRKS+CcxfGAoVVsahXgW9yMPxNH3Gk1ZI6+HVbb0MW\nrJ+PrAgmfjBJ8hTC0GpfiwsvTna727AiwdxvevzL1S/QXOGEDMCg4GO1kWWs\nlrVx6YYpiasSXrvYXl+dc/Rn9gWvjltv3wHGRRWVy65xyl3dSa1Al1PJ/Nmi\nDQ6AXIch69VlKstLiEsy8wZVqgDVSaNkGW3wO8od1W7wZ+5OlCiomLVZGRsR\n2Q184ScDiGrmRfRpA6+ATSN7mt88XXbYXRO6CCJEHwbamaCm2jgIbRqy2rQJ\nJ5EgQEzHEWVMOYuhGeVYCStf+zLwPlCCnzinhRPtbX64k30VqKu6Udis9Nn9\nbqCvBDUpeKvpBJ/VqnaOT45SdUagPg3C3PHNcqEIkp82dxt3gmNmFB9y/SZ4\nW4TswhL2VQuJhHPZ8kqbNtBEdtAEXa9VyxsDN/SIh6jxXLZBFL+pkrkUM0tn\nG3q9\r\n=sMSZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"777dd4ca30ba77c616b0ec0ace19c0876b74352b","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","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","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"rimraf lib && webpack --config ./build/webpack.config.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"types/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.19_1606113860968_0.5754952082194946","host":"s3://npm-registry-packages"}},"1.0.1-alpha.20":{"name":"element-plus","version":"1.0.1-alpha.20","license":"MIT","_id":"element-plus@1.0.1-alpha.20","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"030dff0e3ede4de21c99d6b9d514ad540cd2b22c","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.20.tgz","fileCount":1095,"integrity":"sha512-yGVE31cQIQGWv+7UgyUUnkXWba2w2P3W3UQ1jhHxcdffIvQf+fAm02J0+81gV27VFp9bvyqn0QwkRbUlY5MCLw==","signatures":[{"sig":"MEYCIQDFpblJmcoUjvNcMkDWIs8I/gmNxOPOyG+/4usadM2/IgIhANoGcmAkIhHYVnHDeeVC9bYHVxGnZDI1qybKfnSn+XeC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8340268,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfu2FzCRA9TVsSAnZWagAAOhMP/09NUnDhfyeo5W7F/6W9\nljxqCuVELmEZl9dZjBHVARnNFTExsInImCiW33Lc3bRUx3YkYv5BrybD7z9P\nBDX9KkeWFgu+igOj8YFxW7EfdnRWgU9Cc2s02xckoiqUt1lQRY/bL8ZkIbQK\nTWQ6PlSU6FHA9xowCNRtbGlgcXg8SQ+do0BTx6md0+PcB3iw3A0Ha9CaPg+P\n17flDQHbrOkkOdGTGYHSpnukLnjn4G7SP6jraREmb02u62lyqFJErh+6G2HL\n48//Bp8R3qz4z2SaX8IEjZFdSKr6zUEYa5un7BK+8TmGRehPEyMSS7tg2cfi\nFOyda2XKmWbiExnoNNZbbkU+A4V6gz+CPDOO4SRBo2UwD6D+j+BQmLi2LH89\nkd+FnbGclRhfoyocL8DMkqCXhdf/F4Ve1JofBvtsE9sxED6P4uRGAHoA9mKm\nVw7v7IzYQE5BJwgVP5Sh+0DyJm10YmkPX5PXvnn/mLOoGYDPmxq+waM4p1Kq\nCAB3rgfaYrP2vVx8XRDvRB05B/l1MYiwDS4Xbi2+GEacRtcjbACref/Ow+uY\n5Mrcjq7oufeNjiHPldHv9c0xyiu79NjYn+yROfYgsWelMe3lbxwgGeMqvqOC\no5dGAJhZlePCOSiZBbbZ2KSOHDGfKG4Fpp+m15gLhLlu4MaiRpgGKeYAaimY\nDObA\r\n=tXEm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"7dce7e2012cfc78229ed8faf8d14e8a06b456fe6","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","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","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"rimraf lib && webpack --config ./build/webpack.config.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"types/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.20_1606115699105_0.09335881106049393","host":"s3://npm-registry-packages"}},"1.0.1-alpha.21":{"name":"element-plus","version":"1.0.1-alpha.21","license":"MIT","_id":"element-plus@1.0.1-alpha.21","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"c4af5dba0d90875190d29dc03eb3434ddb73bee1","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.21.tgz","fileCount":1097,"integrity":"sha512-aMUioRQt/t+5Ce0CrNiT1xWC2R9RwahVVjfVzrfSoGSaLJLkm0iKQoN2s42LrB28xtlgr9JkxS+5KWLqh1QutA==","signatures":[{"sig":"MEUCIQCw/9lKm9VOsNUE5LjH/vSnubqnRapv5VOQIMXjFpaxFQIgPZ0v9FRDioUdvqYB0fOIyOtj+zm91k7ZNj1n1ktTXN4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6452837,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfvLRlCRA9TVsSAnZWagAAiKMQAIY3QAdQiyruLVGEQX/m\n6XMN+AuFsyJMv5+jMEGd2DqHLyWbaVR9CYPgO9o5ktre3ziIwaK2vDqBit+8\n4agkXvvgfCW8QDH61yIkAbpUE87+poNTNtiSPc8IaD3vjfvwVakEYuouTRIr\nWpOusQqwTexYHwDZPYNOt3iFCyPGhbnwwDRx5Ioq09rhlBay5Xc8yYlfg1iX\nJtYKzMm/HZmiaytnEkp/OHL0DhIi+CpgXQXzWpCdZnUby5WySCqgAYPUyMks\nmuFdRk/1aa3BirFqjfwd1p9BsQPztQlQuYy8UCEe36lWqQtBTLTjCfHOP+VS\nfmEKUsVbWgbw+esNT2JtGnIlAv5zVfYYUW2oS2USEWRkJObxnLVp8ewNwsZx\nERCiieHDUgjKRsgpQ3DuphBb0fkiOCzwtec2m89adwCUPI5FAeq+vVt7in3Z\nd7tA23T7Ej2lIagS2AzAGTrOU/9DmXqRPVbvnrkSZ2pKbUzLdFRs0QqvZxc4\ny6+h4m37ajYRhd+CD82FaGUJYGn1d9VCBAf5YhO1L5HJAlMa2Rq+I3ySlQdh\nsHx+BMFaBjgLNi+Td9fgRpZed2d/DfMcN0oMKNcepFgd1rGGXlHKyCRsnOVI\n984Fgpu9VMGU1m+8xhbHzePYkvzSasQeCJlMXT6xl5quDPEQF6063hGXZAlj\nnr8X\r\n=VfU3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"e024c050b20a6a80398cd495ec8c91024c8851c7","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","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","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"types/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.21_1606202469092_0.21217569796897884","host":"s3://npm-registry-packages"}},"1.0.1-alpha.22":{"name":"element-plus","version":"1.0.1-alpha.22","license":"MIT","_id":"element-plus@1.0.1-alpha.22","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"700453fe8468c6aadd0f934c0ca9cde1ec945f72","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.22.tgz","fileCount":1494,"integrity":"sha512-Uez5iJAlmNghIguyYOHLo15+TUOuqbSVntB+O56sCwjw9aNcqO+69jMvy8ZywnMcPQYhOBZGo38B4LVTjGJS3Q==","signatures":[{"sig":"MEUCIQDOABHWkj/W2phTMGMGDUJMMZXLR3vQF2lKh53kbGiQZgIgHiB+gnwbNQxXy1qUa3zlM4s9vykPW5VnE3TclDD+HMM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7054647,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfv8s9CRA9TVsSAnZWagAAT1sQAKPC8R9Cd5z47jJ824wt\nvVIdr+mgyi4MwKpVAMKOC676j/5e7bsnvU3BMDzV03RNoQuXWVsnFi9KI+n6\n5AOQILKr02RCLbbCQg8ARf3bMCk5d4Om7XCfJE9wIC2bCKjwt0p8FnzvVsab\nzUNs3rQS1ekeTiz0bFQyXe8j/741bofl7FZf07HNH6yVlLOZkxoaiKeE3Eff\nc+KAvtsRy9+E3ljIdtGNR9hPyjhSIA7AdJEbxiqYiCwexbBS4DjpOgunCFbK\nIs+pGqAlmMboudiF7pFKz+OkeUQgmok5EKKCavTYVyDGTKUaSJ1/zy/4RyQa\nN6/zrnz2xID5KQ+CqW08NF4czsZTYGbPLgEMfKcZ50z5Y1rD7OLGc18lO2AY\n398ugSbwYzpvOBUHW8GumiuiOa9PJMfS7jig3XtgdspmaAgxEXnFm8e/ovCP\nwJVvaDhFoxMJb3kFGS1KA7tW//cmB88hKaAbg5ACVbeg0FsVl4maJOpZTCoH\njmvjyB0HI2AqNOU+DsfkgVfo0GeFFNbnzSGoz9l8JJ+ihOdwYgSNY63Va6s3\nZdgv7zJltKVcZs9DXZNP9NZHllbzAjyPhMYLOdnUjMUV8/rJP2cLxIz9XTol\nTFPawdo5lYwSIovuHCgc9ZgRwegz2ZLUgjk5k/Lb0rdjluHWFwO2Ej2huvvz\nMTdi\r\n=4AQO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"53dfce0903dba7620bb6d77a9d1c770beabb9ed0","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib","build:type":"node build/gen-type.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.22_1606404924671_0.39442532776970407","host":"s3://npm-registry-packages"}},"1.0.1-alpha.23":{"name":"element-plus","version":"1.0.1-alpha.23","license":"MIT","_id":"element-plus@1.0.1-alpha.23","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"1186c76e8a59f2d252943770e2c347e2088b82f7","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-alpha.23.tgz","fileCount":1494,"integrity":"sha512-8lSBR6JhNBOpZSxvWS295fJ/wpFzH00uuyA+glU1nfgBkXvPqwRbXKGWtIZQMZOUe8S/PZKJ33QP+9uSD5NL+A==","signatures":[{"sig":"MEUCIQCsIU4h3+hARi7auxcKrim5YEXDMYmtBufJVvu9cubbMwIgJIdmvXkZceBJw/KhSJbHsfoPJkT8FVu5vDDG5wM97sM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7048491,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfwH/HCRA9TVsSAnZWagAA4JYP/3V8vzOerlrBA5e/InCr\ncLca7Jz624TZCUeDAlE9uc1UJif64g8VjqH/8QO83pTLpVZVVmSp7M9BaTqP\nlLy7WltaDpKxrs5birZWO85c3PV+1HNqYAbitU94LvgJc6iWjnaB/hMm+FVG\nx6MzcuQWl1YXs5Uu/9wqzDOZZAaVQHfvmq8YbVdh0LROL3tgE3E9wk/3tWKu\nAfhkDovcoCMmtkU0rvIifN0OmUie2Eck0dZuNe3fT1jBDSotlDrNcCPffLrb\nxfdYc0g4arE4cUGGuzUTAKhHZaZGgR4Mfj4//d5YGp3uRkT7Ovr5afe/eTZh\nZf889cPIU4y5n89FCePi8wjUjmyXtBYyE2bbVwnEXVLQEhpt7Tc+TXYNHUuX\nYB/RYf16x7UGgjzbNShipMcUUv6Yi7+tpmuQoDyw2GEIKyzFJEKxR1IGdXGd\nSsxRLrVJq1tDS3ipWk2z3e5x4TMudG3zij3oRcFoMrGwDakeOTkFp6h1zhAT\nyZLGDfmKmqOOkLv1svaT8hdp52oET8GKeTWQNvwPwgyOiMdf1x1JxXscDhjA\nyhxWvW3oVckWh3Mg7XLyHRAzn5oZ0iO1k9K/Kq8JuuJjcBMVti3+9Mc/OKUZ\ngYf4ptVsYnfcp1OEm9sFG+uCF3xpk3XhRBp/WgI2N9g4vFP+0/RzWkF4EK5A\nr3/o\r\n=qwjl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"e4610e0febddeb49eab6dab14043fef254e2b9c1","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib","build:type":"node build/gen-type.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-alpha.23_1606451143280_0.14882808284955584","host":"s3://npm-registry-packages"}},"1.0.1-beta.0":{"name":"element-plus","version":"1.0.1-beta.0","license":"MIT","_id":"element-plus@1.0.1-beta.0","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"33321316427a4a99c2a5a034acece1fdbff994ad","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.0.tgz","fileCount":1494,"integrity":"sha512-uJELOCKjY5xaMRLQy1nwgBsPEsTxYJQ3RtBIDbjU0EJ7yqKaohoGF5NyHmhjpTUEddo1dKOmfWSjUoYkCJK9HA==","signatures":[{"sig":"MEYCIQCLNxpnLlwlzkxfefmK8NWXOARaqIOHbQx70jlqY8xpWgIhAKpOjYW045GJVy7+1bVw1oEUlTqRgZsi7kKUHqcG4PQM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7036883,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfw4DKCRA9TVsSAnZWagAAT0oP+wQJmmNryJK/B72tiS5F\nTdLSJyiPRSJijdvKHeeoOeYI2+T6cnzhjRKY3WSg5mH228aW57J6IBLGtLLY\n/igQ397SQsgOtJBXZnMLjPxsN6ucu5NN8CzSjL12AKFOJ9kCbYs5/ih/ZIml\nv7MfPs+ztzmVSmUzGbgwTJX8Qkzs2pzqyDWUYbk5ZpgWzDY9OvgnC3FIp3uH\nUpUfYUJfQOEbT/cyHm7F0wcE6F1D63g2FrWZmLTt19sqldytJC0sEwDi+ShS\nVstHzy4KlcMxzOdSbDNQc4sI66VY2uHvJd5W44dk24G5smYaPbO8nGtPVba3\nep2boUYFWK5pAeS6xU3brQvqg/Og9Sw3iZhrUu5/T0CZb/gx6P7UfLzdcBsr\nMYQuy5LgqL+yPECqC6278WnULkeLL9p6g/tbmGLwEG5VwjT5+gSDfz8S8vO4\nHyQ5cT5zLBzbjuewL5nlyTVShj/SPpnW6UIukAcTC8EBzvD2VhYOuGgZZ8D5\nbgo52HNwOg6X5H6IQax+9k5QQPAe0/ZF3yfK73b3ouI7CqzIF7nH8htbMG5X\nzrXUAPVKaH12ojCQmAmfwv5ExTi9kR45QqO462SohOpi/NCfXzVy8PE12Cdq\n4fpenwb711y5XCeuq5/4I7LBFrdDAOrrHt4Ii+D1Hs9M0YKqwLjmyx7b4/H9\nykJ2\r\n=obs+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"0bc7f6d999bd5a70536df4b3609bacee7a9c7ee6","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib","build:type":"node build/gen-type.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.5","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.18.2","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.1","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"16.0.0-beta.7","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.0_1606648010047_0.295597557559655","host":"s3://npm-registry-packages"}},"1.0.1-beta.1":{"name":"element-plus","version":"1.0.1-beta.1","license":"MIT","_id":"element-plus@1.0.1-beta.1","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"96fab8e7da0b316fa2ea7f7f42dda3e6cde1afa7","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.1.tgz","fileCount":1400,"integrity":"sha512-Qo6uqxp6IY59jvWwBo4IsrjEwrSJPdz6ORP714CMy29pLMdhJlx6GfrwI6QaSMChblq3R4jv2lO6YdkGft3/Hw==","signatures":[{"sig":"MEYCIQDFgt+ZoA0QrXbysRQhlGd99qsXIFYpocsJX47mJFonHwIhAOxaMRC4ltmMlKyhzIGBIyl54sBKtCDfQ1RANJbOu+cU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6872205,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfxk2ICRA9TVsSAnZWagAAPYMQAJr1CnRjCRmozXw7TjiE\nXfI2AMgVc1A83ld/ypJGHPMGWztnauDrwsgkv9yQjP9R8DfLpfFur9khn1sz\nFhL/IqF/ThsUV5+CSt73CJxtMejWKK4a+NOOjHBxMWjlvHf6mcItEPEu0QoV\n5jLfmR+pNh9zDsw0AP9oZ8PBjEKN7toPRJggzuneAjUMaBRCCYg8ZPtDenHM\nmGpAjRIb1OchDNSZOYKoVIlKcYTqHTmoR+gn4A5T9WxBRCFhKKdhQ3VPnl59\nGa4qAM2A8vy9rHoOqLQ7nADr3AeOIf8uDw+uzKr5Lxzb5vy3LRGN+h1hGKLK\nrpqZVq9f+iNYS3l9hjuyOlmm16WTVCBxuwWwT5pltzqdttZgbLGdl9qYcAMS\nt7ltHwu5XzfbIAicx3IVG5kHbr311yljeW1SASy0MGcrEmcBbsgMGig6gdSW\nVL0YdKGPrzO9CxYLAZpQ+vd6J37dgBiFc8kw9ifTtS4BZtx1ZsbqMYxB+suS\nCmnfsmOjb3P3EEV6TB/8sRepkugxJF8SQuLXGGWh9a5J/oDGbhLDI+19BdO9\n22yF9+74zFREUkD6YesR9V+rEehk+xMm7Cj4zgRr63hHcl6aYQDZmYIt++iS\nGU6geQTIFMl4EvD0N8/R1SmcDpusudzpS6jUeZHTuE4DIBF6vvm0DcavptxL\nudt0\r\n=+gtH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"2b234fb4fbbfe4cf469016361ace733d7a719b3a","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib","build:type":"node build/gen-type.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.0","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.3","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.3"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.1_1606831496009_0.9583158599947703","host":"s3://npm-registry-packages"}},"1.0.1-beta.2":{"name":"element-plus","version":"1.0.1-beta.2","license":"MIT","_id":"element-plus@1.0.1-beta.2","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"0a6a10dc153ee4a4ec54775bad22a6853eae6337","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.2.tgz","fileCount":1401,"integrity":"sha512-/E1qMMi2uWX/gtqICNLZw/Q4v2lvtBaH6uiE4tAM/9Dcr1jDBiXHPNMGBe6b98qWdVgVIHjRRtOuW9ZEScZ2zg==","signatures":[{"sig":"MEUCIAySUGMcIpTlDayFH3RTpL2sPLcWFk8P3AIh+fgUzepSAiEA1KmTlCbz+npLkD2W6+2yo+JxKjAKcqcNnu8woAv3jvA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6586047,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfxw8TCRA9TVsSAnZWagAA/7YP/3mYnjysOBPgDYMHiHKk\n9zvsgRI/l7LLs5fKX+kBxOhCcgPezFOHxZz5fC9xqh67iOkA1gErphlC0RLZ\nl0V3RIqBTGHtvmqd3RDVnxHPkUQwEXuPlaQDO7CyP8g6rW99WvyGTG7VtoMc\n1ZvCFlX6iMfcE6g9/LD3IG+GKz0qqbnm0LevTuvcp3STX6cI1bWFhfQcLPDS\nYAIyVskgFyj0qucNtJRvsHPSlHV2i+CSfARL8gwwWw4CvnCTsHSlus35QWUZ\niG8MPYgBBcb0X1VuVhN+Oy/rqweWi2DyyXIMSMeXpDm/JBeHlxlMyWFH7/9E\nOzLBSpiMxmY8zH/qDui9SFmC1AjHQcb6NDkiG6qVxzNewIzt0Dy22nN0X3w9\nIpvpbG8A7m5w+ru2MB8YwoH/czGj2Jy+vHrKc1My9AV4ZGHws5fqoRM66N4Z\nabyHJKiMMpM1+k6Ie5C56eOyxTDDsoMVt3r2RDMhhls5QAyWBw1zJfhsJLVM\nBWBTOwnzSj49XPNNvdWh4c5tEvBQ+whA1F9NSyyQACByY8XJ+7Rvw6nm31Ds\nF+lFw9L3T39jI47p//oWMHEz7/SI2tYM5I66zBYone8Z5SoqbkIPwzbWBd45\nWugeUeMePMVaXpWi6MN2UdQnuWNpPzb2iAwMvlqTu5UGucie3Nh2wMp55d39\n9zU/\r\n=7spX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"56b259e44e9a50d7a49e6441fce1647c9aaa4c02","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib","build:type":"node build/gen-type.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.0","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.3","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.3"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.2_1606881042789_0.9530462448450059","host":"s3://npm-registry-packages"}},"1.0.1-beta.3":{"name":"element-plus","version":"1.0.1-beta.3","license":"MIT","_id":"element-plus@1.0.1-beta.3","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"945d5787823e8a44751b901b1b1a94ad2d487f5f","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.3.tgz","fileCount":1401,"integrity":"sha512-ihqnUjhR4g3CCuoA84kzscaDrFMwPiQfKtD/EBqUOKUi7nLDk7NqHfRia0ccTAq+RkqsEAn5tZ1ih4atM+2TCA==","signatures":[{"sig":"MEQCIFD0ORnCMv32onCSN6FUpf4JxrhFmzWJ9gpYhJv06RHJAiBiZ4C2Pc46E87p0g8Z+egkYs5jGiqFVop9du0NMS62aw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6588063,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfyOp+CRA9TVsSAnZWagAAIJwP/RQmC8T/Zhd/OiJtucH+\nBQTo24x8LbYhk4AJ+01KaMJWqNNMj8lcYv7b2Zu74725GkDoDcuzfTdF539s\nWbFnTZbIjor86bfYI+VgWqDsYfH0ltj6UOAOrGH962NABDA72QME/X+iZ4Zn\n7T20dY28a6CvsK/zFp/7jPEnpW8sXfm7fudkaeTXxiNlhugadJP9cX7nJPS3\neELS3K++dN1LRXOGbVc0eV4p75DgKa/JfAa0xbuhn80+dd7Wy1d8BMU+nEgL\nKvZ0+nTpNdbkVeBgWzCw6i9ZzD0nY7REeF/RocFFTkqgzWH0BBmad6vfCWaJ\nIqnJfgC7YfJHfsiWVWz66+aOEO3Zm0YGXyJ4ISNtC0LC9J8pzr5I98vFApLy\ne12TYgEnXFDgzq8lBvsetDh+jq78y4afsJYBmynwKXYf1VIhJlnHxLmcnf/S\nlxBEcFwZrLo0zv8OMUPidxUDyCquLlW+EVAkCiRmpsNYiFQhwn3KwlufX4Ln\nDz+SCVXd/Okl4BhVHddc6xWV0S3XkTfxb3I4r17bzU9FvP3UrVCVTZ+E4UQL\n6/G7jPofBV3p0yt/+iSLymQJVgdQsXJP87Sx33afEG4bkw8HjN43s+PWtA+0\nCVJDvSmbSTm6xect5i/YxFuEBuAjSSSoreDiCTtEHBuRTEwQoI89G6rAlf96\nIutm\r\n=FGWZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"24470ffb9ec1429ea85929d418bea14cc3437f8b","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib","build:type":"node build/gen-type.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.0","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.3","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.3"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.3_1607002750083_0.8188287240874892","host":"s3://npm-registry-packages"}},"1.0.1-beta.4":{"name":"element-plus","version":"1.0.1-beta.4","license":"MIT","_id":"element-plus@1.0.1-beta.4","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"a548f54e4753c9a883b48ab5152a11ab4e7fe044","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.4.tgz","fileCount":1401,"integrity":"sha512-1Ce8+oJbATpPjpe7iwO4K1RB+rlBB1BfIK2LsHZSOwfjaGAfbKUnj0vWKa4zbRJF9x7hv1t2mEd8J7/ENte43Q==","signatures":[{"sig":"MEUCIGSzD4trFW+dZNAqyabKlymw5pEEU6EVXNOFHZv+oouVAiEAptwFnuGusKxP19NWfO15khOEpuWg5KvgfaGR69zkOVM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6597993,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfyxjyCRA9TVsSAnZWagAArsUQAJjUWer2RiobueyPNOpA\npG92uKOSrLeNvbSAE+CS9tLxwdEXa/Y2mbFS+PQ0azd5PPQKVZaEiNHdRG/h\nR4o1a3tDwQWfDx/ec/d/K65fyNuGHdpBWwogaf+KnlnotRvM6/1WLjDFYL1s\nHWYyu+Kr6OUDtMvlYBwfWRY6noMc1euGZ8ry0she2Avt6oVC6m02OHsORgo5\nQD/FDIn2RqsHGa6DU4tRQrOTsXLltvfg3Cyezv2jW2IEFdjOTIp+lvgGdciy\nI2YpunAGlGG9tflwhwD9j9UghEW+pbX2Fs40+PuffbIxAMrKuTtHYpBbFMdO\nmuw/7NcsG7tNAfxN88NS30qL8gCGWd6q258L3h1h+qXupr+N+dtxdoBK2QX+\nuLPfpls7q92DCJBP56fTaRawGfqS/Sjn99PgALW/0ypjgxb9253mlPvKjVvn\n8zEouYcqQYL5UJUlAD4bXHC1gQ067TURbj4ApFlRT9SjSFB+SoCbXIpRMrip\nmh5YHdWiKQKUQE6LasnT4yCp39vuoOaYgxS8mXYQKsa1OZJFF/KJeb+/l6tB\nlS+anLr8sy8C1DjWQeHRtffgS7hNMjQhMT0D6dWO6DyQVNEOTN+45M904sB8\nldNd4O0fzk4EjtWSh+IDU7Hn0F3n5J7oOlCq+MrlcAkPnICIPh6NSdjR5RgH\nLFX9\r\n=5avo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"4519575f73e42bb9d84c52db5f9e069252032e6f","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib","build:type":"node build/gen-type.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.0","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.3","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.3"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.4_1607145713251_0.6752704559663063","host":"s3://npm-registry-packages"}},"1.0.1-beta.5":{"name":"element-plus","version":"1.0.1-beta.5","license":"MIT","_id":"element-plus@1.0.1-beta.5","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"3382ad1387ac10f198a530972c983534caf4d9cf","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.5.tgz","fileCount":1401,"integrity":"sha512-fBn39F0Tiv5Wl87BR5zji2raUZBYi/cte82iqRK4qg0G3JohJq4azHrpBsom6K2MsdWB3F3Z6LWU54YtvbGIQw==","signatures":[{"sig":"MEYCIQDpAH1zL/1rj3HJPtQO4XlBjiQpCBRWXxk6bvzQMZf0bwIhAL4CdvwN1nwg9GzncBWIZuZ8OyEhtkjb3RIK0byWfGWU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6647400,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfzb77CRA9TVsSAnZWagAA61gP/iR15WSD7vOV925/osCE\n/2TUPk13P6/qFM6lKbMy2E9ovWIw85fLagK3uMQS34E6o5UyCJDvSmC4zTcU\nG+0As86CZZE2cr2z+bBDRsQ6VQYqLHSnmcONLH3SjCFs/9SNe+OYke5A18Yl\nRz5DU9iNcz+AdTC9dTPeOhKwBOOTnwlkcvrWvUExv7uCydnXBLlGQ3C6IWpl\nfjn49GgoVk8Z3yjgCr4PFoPD3dmypSkyLZzTMLD4w9UdRoalbM+lhT69EuEY\nVWFEUvQoKjQrLRxGA6JT+sytzGpCFTvNM3ojzy+9jZww54aCWKvP3HkwjCta\n/8xdralg/lsGqOaBT1WelU11N0ci0bsBCjAuqoK1jXRCfC7fB/sLNAoF0lml\nnVtqtaEUjxo+iPjOyF8F9ph6Sq0VyhZq23vmvRJ/NEI5OQfc/2iwAbjK7kcv\nP3i9f6CZ00eimyqzOSn0uxf16x+0Nhz4QPJE4XQIGBJ+dlNbOezDDzwRXiCi\nA0CROTtcgM4JG8448KNbFvvMlJXoZ2Pn4g4jEz0WkZHejH7Sokr28Eaztm7c\nltGKUxlRlk4nnkAWE3XGtlGzC+EaR3vJACMOGg2xRslb1gHkdWpKwVZdRO3e\nLnoNsdBpBV3YpbPjmqNX3YRI2C7Vrpm1tRiRbDzs4DiOI1v6/iCyIVNBuShz\n0QsZ\r\n=qBrj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"f5d4f5d25cf2749f069c6abd9f896c614d2c31bf","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib","build:type":"node build/gen-type.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.0","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.3","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.3"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.5_1607319290230_0.928355712645901","host":"s3://npm-registry-packages"}},"1.0.1-beta.6":{"name":"element-plus","version":"1.0.1-beta.6","license":"MIT","_id":"element-plus@1.0.1-beta.6","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"2a9c8dd7a888860e9e49e321120745ec052b51c1","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.6.tgz","fileCount":1401,"integrity":"sha512-bVi2t7CPa+m9s7Nuv7eHtAezD6EWPSezCdTegs7BjR4Y1vU/jAMib91puZIvtD8QWhIvfzq0ZiULyPWIEO+rpA==","signatures":[{"sig":"MEUCIB+GbVfn7p2qZ5ZRAsBC90V2kZEELThtVRgIGEtubcnrAiEA8Fa8Ga+wEM3D4mZ+mDXWLCsDb0UjW9VyMNAwv6AmCT4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6648748,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf0FtECRA9TVsSAnZWagAAVBIP/joPc8TBPeLa3KPTssbl\nASJgDMEqbiMA5X2+K6SSG9RqB6TQBsj+P6ZvjwYqe2ljHnww/7yBEGsa48Mo\n/Qc2PUpq7mno3/KKdR8lOGpDh26IYLKxsz5j1XfZcr2k9EtYE0GIf3TY5m5D\nrKaEPeoc+AmHoPhfeIr0LHTbaDPArWY1pkuV97br5bBVaTWOVz/nQNaT5a7O\nGnOyzm7Duh4O7leKEPNAAkrGgrbdjS8XJytMXmZkfmh+iFYnXMZcbTJK3DJx\n0nbRYxH1mUP5TopkWps5XuV7tTREuD95WRK+XEs3U2x03yGCJ8quTiNh5cTe\nEZnDfvliyedalNeOxtiUzwFrVolGqmYV88Ope31KwmG77XKEg/Qn7XBk7M5A\nP8WgIngqoVn4/2T6EoVIINsi7kT6YWMwvPn39N2u9J43bX7IQG98BnoBY65x\n9DqrYn+M3MsvDTdHbgI7fh2EY2ShKSXZOcaxaOYGB3MW5dGi9tOvBsdkcJXv\npfnfRTdjgwoJnNb7QGfpu/OXbk1cAO/YuDgTSztawVFO1aqKty/sUUBLjVg/\nuaP1V74+CNaCH2UXc2WhBcAbCie9F/INlNN4jYu8CxEjAwEdwWh7K6AAoJZa\n/GJgOiP4nvVaU4qxU6eAJaLPBsd523p9T8bFnwzGYV2iCpC12JQR+RVlNWR0\nmBH9\r\n=Mkxp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"79b8273fa027e6835dee16b44835fcf446d1a1fb","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib","build:type":"node build/gen-type.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.0","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.3","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.3"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.6_1607490372012_0.9521757030729336","host":"s3://npm-registry-packages"}},"1.0.1-beta.7":{"name":"element-plus","version":"1.0.1-beta.7","license":"MIT","_id":"element-plus@1.0.1-beta.7","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"080d3754ead09a71cdf1dda371fc34b55e8fc8ef","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.7.tgz","fileCount":1401,"integrity":"sha512-4U72sryKD/wO9oqJrB9xC4m00ARBZ14Kjcx4RVEBYP+Fl7V43SzPy0AW3ndso0byRz+gH76BkG0fzm9APcN0og==","signatures":[{"sig":"MEUCIQC1+9o8nvkNkShcS4ZhUC0AXY0Vkp51Hbxgq7OdR+SRgwIgL38ICMQlKMMf8g5kWHYLtT2zCrgUOKAtCEDaefUwZWw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6675605,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf0b3CCRA9TVsSAnZWagAAr00P/24ReblcLtAJK38FPcGV\n6QDdDUBRLROuGhXIdrEBKq3iSbpLCKvyg3SXBQJHw6/9adGQnlwnxgaNnOCm\nbhDzeEelyKPQS/4SJbTRAwS+2RSjpZS35h63Gbori9jciNFPckSF8H6QzKWT\nR7l0hY+iM6eUW07JLStKp1H/iRIh3LWLqFW8HUc1l8vVQhKbaYF9PQIRgV8t\nHvsoP8lxIxPR0FEQOqBWsstanaa8s3fW6flgu1kWXy0WaLv9UEnPe17i7fZH\nX5j1TpjgdddhuQjejwKX+QCsksI2DNZ89WtzyuXGis0wDhA6h/wFJ6yDNMNf\nOIUba4UjrzLyOdy1ECeQCqjT+yj/YGNXkzSfc1VwHS1WV4JsZW474IYhS922\n6wcSaKq1IBKWQ2mmBtQXpmHBAHEJfEhJeMlIVvxy0IqdO8kiSOaEGEPH/cs0\nxdTinMx4gW8vcXHGss+KUgcTTR7C11SBcEJEY0gmW5NRAQ1EDQ4GxCgTdE8v\nnYEOAf2KlaxDObBe6nBA6AAk+OpyNvK9IvwQLwLyldyL2a6Mtfp04pfv/rd7\n8NwWsiUUWMrmmhjQuLj+iyYBTTP96cavQB7o9aw0USiDyqa1Mi6tsfAiv1VZ\nY9qOcT2e0qgd+SORxjUa9m00M4fB46i/06nWChQBhwmdEBww/b3TMb15XZpi\n8x8+\r\n=0HiN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"3effc34a9d04cf6686400db66c9f7ec960fa4a6d","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib","build:type":"node build/gen-type.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.0","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.3","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.3"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.7_1607581121786_0.8982135049356224","host":"s3://npm-registry-packages"}},"1.0.1-beta.8":{"name":"element-plus","version":"1.0.1-beta.8","license":"MIT","_id":"element-plus@1.0.1-beta.8","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"d64ead88cff37274262bfd9196fe4657f55149ed","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.8.tgz","fileCount":1405,"integrity":"sha512-D1u65HYMnT44U3cmll66W4mEhxLPZTqcziJtaWwdtl6VIEjrUwnrkCScnH5mVw3w/3NwRHW6XiqZCFxqafUvhw==","signatures":[{"sig":"MEUCIQCHU7aPQYr3i/G1YwgSF/E4N4C5gJAF29rqMPNOuI7CkQIgOn1DF5gjpue5MfDHBF2V+8y1192Z8zEMEGOUVi50AXQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6679030,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf1G3kCRA9TVsSAnZWagAAV/QP/2Ab/Fz92QWF1CGXSGUh\nN6Lhkd8Bc0ssSb7sMZKtjD0S6Wbe8nNGajbcsi7LzULH13i9kILiWt+zpz/d\n6xh1/X9qwltmex/nJ5D8k79z07ZzW7Nx91l7AOnEmsakBkAOUY0ZiVRj007d\nQ84+IAKjJ+9FyMAYLW9gGwQOunBmAmLJqvNFMnRmcf2Q7qOyMpJ5z+QuO3ox\nm65PxA26wH5HJ0PsACGeFow5e9Sou/iEjUnTNFbN5Z+P9rnBQQ3qkusdzZC5\nxrMSGdmeDeaMKLPFPqBVpPb8MZSFM3V5npvp02hdId55baUzbOxYToxveXna\nvlGu9gBHqbdpCsqu5vVRQfECSrge7C9gykd/SjEeHY8K+1UJ/Mvprc+FjnP0\n8RDT4wxGUc4lLAadLKH9ze7L3cz8W8q5XnC5N9LBcPFT0+K5vVRTuh+Eh2+r\nBSqWgbme1oD+RLfqfwPc0FySQQxLzvbgXTpe406dsLbyKqZ0XbYR8R+FwJSo\nrcdYJsAdKumXdYQIiQjRs0gmc+4VjKIQG0HwXaoySuB9Jlh6O1gpVJ5MpZCd\n+Dl34yHAZIF5wemwEUitAYLcYKXMW92/41Zi7UtE/3hmUYP6w5Z215n0xPjP\n1qEXMHYozrOLQ1In6/mrKag2tmoFikVkW4Jg69/8ClkAxJFFbbpg99gtvkh1\ntzQm\r\n=PQD6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"36f676cf371fe591a90ae02cd2e1d34c1837acfb","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib","build:type":"node build/gen-type.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.1","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.3","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.3"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.8_1607757283569_0.8864922095517418","host":"s3://npm-registry-packages"}},"1.0.1-beta.9":{"name":"element-plus","version":"1.0.1-beta.9","license":"MIT","_id":"element-plus@1.0.1-beta.9","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"5e09a8ce5d3bce9ccdda52b8fe1fd1e017999ef4","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.9.tgz","fileCount":1420,"integrity":"sha512-BgQtuH//pQJgoaAd5JoLRtT88qyC2n61XBbNPK/yf490mdX7GGFh+SYO1ThoHTo6hYVMBk0p5elpLKOa+IIZaA==","signatures":[{"sig":"MEUCIQDUmL9l/m/DfofM8XnxPwNN540H8ihE1luaCCwaGO+21QIgLB5Sjm6gKoviF1fg10t7o+ZbCG//dKiLo55GS0KA6Rc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6742990,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf2iMgCRA9TVsSAnZWagAAWS0P/Ak8AI10p6i++k+TqNds\n77PDc8f6jJdJtTN2m0KvcKMt/QeHWHb8fAyqpe7+2BzHXhn9Bs3XWRZaS0Rj\nXnc7w/qDSMUiVrupVpM6aqRdp21HW0yM+NvJM6Prsb9LoX69YQH6U0f5rY/X\nJx+ad418amJuhBSIiGNZtbWcHMRS1+j4GWyyDJv9Lu/tB07DPljjFCfl9gzb\nhP024BKmi9mtc+HTEfD0m5STq962YkbgreJVxlrC/tpv+xiOP4/T7kYR7qzj\nqTBB/vioF4cA5b5Ck13J+i9ck1X21xcGDy1J3lhw8xojr3o6G290v5ljRS/7\nlRfxsuqmjuWTHihIqSKAy/E6GuZuWwu0kc8mFDP6HTvFi2kHd5P1On4dM3Yi\nlO9nzeOGGa/QYk0+HPakD9Jb/DFGX/BLllRHZjQ9bSL5g3Lf6a13FgYBuZVY\nK1JZ48ndUowv8nWdczFP++/55ifJD6hIXqsTcdldiq2ESKWHZILpDcncq40h\nHeIgwTUIMcrxgPXBKFRisUIilO65sKlOCXFB13bQX6CzrrO90HKUqfvUK4PZ\nCpU/NX3/7nVVOByx5c+KYahOAxnq8NsZO/OFB5o5ZxARkFrdkr17X9E2FEsY\nsoWSW4gT0AYKvs5vyg/S91u4T5TAESwWWB7TIKWLU/7lF2AEZt4CeVw/fqkW\nA5yk\r\n=7HXy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"ed2d2de032fdfd5ae88fb85fd2ec3243c875c715","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib","build:type":"node build/gen-type.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.1","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.3","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.3"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.9_1608131360339_0.12694105441517634","host":"s3://npm-registry-packages"}},"1.0.1-beta.10":{"name":"element-plus","version":"1.0.1-beta.10","license":"MIT","_id":"element-plus@1.0.1-beta.10","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"3fdc914c4a888b899d701642e13d1904ccae01f0","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.10.tgz","fileCount":1435,"integrity":"sha512-yjiU9Nnt8VyKJR6L2JoSa59W9pMX4A/Q6csXbd3OJ2ZcakalCP1iDGhAWmp6WQOkgmJFhhhyLENDd5HH1d5Zdw==","signatures":[{"sig":"MEYCIQDIi/73I5shfRS/8YTtAedZXUiW8OMTj/P9YCGWnVD9QQIhAK92gEGxd4fwM0NSJ8xb7UedtKdL7/4GU4twuEqiH5Lf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6786325,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf3CWlCRA9TVsSAnZWagAAZJEP/RHf+3VPDy2mV6kkoMV+\n0h+U6110s0rRQ84WS5hG/QeofQezcG+A0tPkNVAlF/Irq4lcQqomLfXUg/lr\nyUJoIkPnIKy+zb96TXA4ZrRdVoWw/IfEbiMfQs1uP5U4TQZyzMJ8cI/r50BS\nHgOYRSl9o/Khf4SHC1nyxMmxqtVGebStjkpUwl4uveXPWSHzJNO3mdtlSSIb\n26D1zrdxlNQyWCHLCNsMwJqE+853VRr8O4533NKeYXKgB7NMVR5QFPRTI0KY\ngKlFKgJ2wXVTXvJR/c6F7EGS+J+t/iPO8q3TT6nAV8RHB8emzNclHJ0nf/9P\nl3lUuubXqmMaDTd2wIBLP9T52M8atS0F7n6oodpjdBqnAqi9AI7+mdkQnymI\nwgoPoN6Oz0qLAjZSMbbSg+kCSsgJiQx6BdmWEhF5fzQrIYaqDLCm2DyPQSMq\nta/U0OhI5CNoOxSxu1ezAa2uTqKU9speBhw6I4H+mxMXf1b0EFCz0eZlJsO/\nP9dgMJbi6vquc8kDeOhlQSg8yGe04G71f7+L6fWf+LqwGLQidIdl8dcKT18A\n6DQv2FmaFh08jbeFGCM1OwYfYsLbKmyq9zN5F8hCYSRHAEKN5168gEs88DWc\nqv1Q34xncJlhNHSB4J+L7JE0oKxqrVGvXa/WsElQcwy+AUl9VyhvXz4PxNVr\nO5Yl\r\n=3F4O\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"b11cac4ebd92a35da5fdd9f0347b6689cbc4cbd0","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib","build:type":"node build/gen-type.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.1","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.3","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.3"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.10_1608263077279_0.5791268855661813","host":"s3://npm-registry-packages"}},"1.0.1-beta.11":{"name":"element-plus","version":"1.0.1-beta.11","license":"MIT","_id":"element-plus@1.0.1-beta.11","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"bcced187b44748b8d597c2681923c5097ee95fbe","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.11.tgz","fileCount":1459,"integrity":"sha512-qmael6DKlhJsOaEi/n7Zpw10qOCRO1irCXJ1LO8eqtl/7UCPZQNiOIIu6Gd1SgsJWbiW55NrFbHiRpfx37ZLIg==","signatures":[{"sig":"MEYCIQCW6V1q2JSUOZzRbVU8of2XTAznoX6KohYL7gsoc1y22gIhAIFzco/dEvwzDarvcppJfYRuhc507zvk9C0lMHJDCFja","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6815391,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf4LViCRA9TVsSAnZWagAA7KYP/ibo26MdYnSFZVI3i2nX\nQQpFWSHT6tYiAIirw6QI9apxIMdINjbBMczq+TybZlJJEwtHsI5Ez7pTIPqy\nSrb/LgV+ETn4SLsODGhIwXkJhvB08vLnS0y1Oqu9l8yVbIb6g5BpOJGO3s4p\nDtrQqHrSXG12TC01+UXnJCmIPXqcN8KEpUDIpXV7iuj1Xu5bNSUSZlZmZwRJ\nfAlIV6M91Wm0tLVKKTol6eVGoSXLlJOeausyRb6nLxT3jNT4Z4T4tQkqqbCw\nXuO6bS1OyM/vpJq1kGCD7wqPbyT8Ox9B2G0Ay/0ijx9iyWH2byznG56+RwRN\nYA+oZGNz/5TBE3jltsU8+xRxrQhdpZNzOPjPk+7cv/tCkdq7fP8rJ/0YP2AM\nD/cDMmEh6WrmCFnguWuNctRfACmnFc20etpwTXDWZHx7ceg7vw/ppxezMRVP\nazI4DSWfaOxY+OUo7pJrm/jWKJflXVeu6+cBLX7Des1G6TwD2jeWzIbFejfk\nndSAMjkxnPibY/r02ts9b3rYWQLhaLbtNG84bWSrouKyzkiSDdh8q9Z9D1+t\nvVOun5fgD6E10/IryY9reh7Q9OfrUX/ZaR6Sd9WYpgJAvXeJF6d6KsBwvufo\n7MeYJA9xMeliheUaBfrj+ieHwhiimY4p5RF4AfwSAkjL9/g76BjM0vgef1Je\naUr6\r\n=MK1P\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"4955140376da81b9a1d9232edee672f4a3578c04","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib","build:type":"node build/gen-type.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"iamkun","email":"kunhello@outlook.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.1","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.3","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.3"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.11_1608562018354_0.6187844232493447","host":"s3://npm-registry-packages"}},"1.0.2-beta.12":{"name":"element-plus","version":"1.0.2-beta.12","license":"MIT","_id":"element-plus@1.0.2-beta.12","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"b9042f93a7690a4ca17ed15faef27ff2a66183e3","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.12.tgz","fileCount":815,"integrity":"sha512-fXSpxkjDhylLF4zmalCHCNcGXqif8bKMkvfhLZxmesEUT/4bgn7cqC30salBBn0bgRAlzzszffjnKOXkKVRh9Q==","signatures":[{"sig":"MEYCIQDbUgcxKEkfY2gSgGeqcEIv1xlsqllYdX2fCpJicH2/RAIhAPHuLEb1tNH/DhnEk18f0P68dWMt1Lb8Q6oHdoXe9AFh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3194201,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf42VNCRA9TVsSAnZWagAADbYP/AiE1KbHPiJkBVN9tCis\ny9Vf9ckwsV8I5X0Dk71BbDpTHbp1lB4c8BzKUd+YLI5/Zp1un6091nsm7iEn\nhZzrvazFg1UlxsP23Ejlzq+9pfJoJC9kuxDQRgZXcTiEE+zJidWd6+l8bd1L\n9kv6lZWQyRdbLPknpwDgG0YLU97QrMqiTX6/aRyj7wTV7bhnbdyh+Rg338z5\nOpmsJ6X3qcUf874ZySTpOe21JBS1pp5Ojv192igyTz1svhEM/u1roYWCHqkc\n4sjbRyvoDF2nKihSR1LUH8fopbIuNqKEk+GnycISiuY2+BvXPwXy+VKhsjkh\nprw4Eh1r0upKA5s18qdo90mICMNQaSJ9pZtAOatzT14t8VJxtvWf6vll85Yt\nDAgxEwnNULFzwntdHjb6oPaliKXTcK99On52pOXriNyKL507FQuMx3mXNoNi\nFhmIY5vj7wGH2wmVEvkKhqVne/bn4esqRU1Y2w/NpR9lSatJRE6S5jSrKXXf\nyBMyzZT8e4wa7m/jqR6EIMuPWGdMl1/oAMEze+ZwNp0ndkS0m0vHx/OnHu9U\nLzE6/Gkt1lWrSpP8uruTdlBjhQUiYWn1orfq1BTDZWZepmLoq0A2nVU+md3z\nxqEYBxgLB83Qr+raT+y0QWLPLrS0Ry6uTKdgws47fdrsDzSocF94yGlGVucE\nDaJI\r\n=fTNW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"eac5e573ae96eae9690e5c78a895742a0577bc88","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib","build:type":"node build/gen-type.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"deprecated":"this is an error release and 1.0.2-beta.12 package has been deprecated","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"7.0.14","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"15.3.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.1","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.3","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.3"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.12_1608738124831_0.3502171070874516","host":"s3://npm-registry-packages"}},"1.0.1-beta.13":{"name":"element-plus","version":"1.0.1-beta.13","license":"MIT","_id":"element-plus@1.0.1-beta.13","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"8a79e6d07594c0eb1c1f52fde81bdc7c50bd4d52","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.13.tgz","fileCount":1460,"integrity":"sha512-p61z2stLaIj//CaSu3KZUVzTlKh/CYcM1gl64eWpOBRh4wqb/7ojMZicolYHRgnMXm+35Tha2Oj3+/JIBO280Q==","signatures":[{"sig":"MEUCIQD4CPoF1swfewc3skFKpQj1UlASpBDHonzovycM0gbHvAIgaEriDZErn9Y2V625uBbY09bcBlvFC3UPYmQ7uWLBNvw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6915622,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf43RGCRA9TVsSAnZWagAAUksP/2D0PiVn51hiUVTrbd7c\nywFUbhiSu1Ny6RiedqPmcrmenBBz83wfC/bwr0+YHdzzumGlZLBQEsg4xeVx\nTWqtS6TJZXzMz3ZjsMIwT/KZGmWXR+Rvz8WAvTd/c0N/VBtm/qvi82dUk3x+\npD2xnnhUZpHQ7f+uthnVeNAKUo8yo9lwyoLug0WKmI3Om6n8Wb/SI4MFeWAI\nCM5gh4qg6hNcoH7JosnhxYiUFEupXPwmPyuSigHfiNn/K6XLvFYWn7r1KkKz\nJJs8ojBIznKAq1tkcXNYSkTNF6ViuqloNncUlJ9yWIPi+VLCbEXJ7JK0me4S\nfaKfHWrxPiXj8Tn1KCbDrQdzVWMhT+Jc48DAQihSQ2sbNze1fhemG8Vgai7X\nV1ZYMIt6/N5RsGGWS/v7NX+hMaaH+nvil1Q8QkZbdFIpa36exzDZvdgFLkQt\n5tWoIZCZ2GvqTdxLyiO7LYWCflPEdZ5UZmL50me8EYb8CVss4rKCbgKxXqgF\nZHBIZzAAjAxrnySq8sCdjpAXGmyoC2zIBKnde+gfLEjfvtVN2qslXMHdici4\nbMQG8ZfMx9kCt0oke/yIUJWDtoMx1shLbPrlFR5A19vbpc7SoUoNRka4wuCq\np/85c+p0XgZkiRvTRKXlFazIRNfdyT06t1NQy0sj0iEIPsUy50qkHZNuE5cS\npLM5\r\n=OGau\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"3cc62c7398787c9b41b75501ffa16dc1d03955cc","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib","build:type":"node build/gen-type.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"7.0.14","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"15.3.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.1","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.3","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.3"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.13_1608741958465_0.019045825355342272","host":"s3://npm-registry-packages"}},"1.0.1-beta.14":{"name":"element-plus","version":"1.0.1-beta.14","license":"MIT","_id":"element-plus@1.0.1-beta.14","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"67e6742ef0a380156d306d519d474220f8c3e03e","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.14.tgz","fileCount":1459,"integrity":"sha512-iqc8lAmj4yYTVQFlxwm5IWj3vxufgmF8FVwKgEKJfy1qQQVqA34R81IgywQpYh3jO/d+ofmHXhsm+z3ojXVp0A==","signatures":[{"sig":"MEUCIC/Q7XrlgS4L9LouWSPPvv/MrSSgDr9ZpzTFHWFIK7WOAiEAwg2D73C5ynq7A4pxxia3zsReEUAqQpLYr1hYObzft+g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6914836,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf436ACRA9TVsSAnZWagAAo30P/0sVm9vH+0czNaQe8ckE\nqKZbWufDE+OYsOy6ep6q2oSqitVmlLRXp6FAWH4I14NBl/ogJnk4ML4yO0nT\nqUj2Z0KXgRtQg8o2rWwcZbhuosv2EovAPi3IK3G38D1bXxF+FAgoCBHjgiGl\noJo1cKmq/ptw3fprsZ2fZnDr4sqZFU/cI6WJr88cYmI2vhSmYHhyK0j1sqp8\n6+91UaYkmXokvlO5EggWB1fgdAznBoM7g0R+EfGv3V9QiexUXqFyMkVHv7zK\nsmvQ9ZYMzZvWuijbeT9hkRmkoQJ4FhYSe0n4LGzf8HRt45KMihdLCjUGoNyH\nKQ6hRtExxfhvjv8zi8g2Ld80xdbFmiNFo+kn4QonIqjdyzXCwZVdtHs6+mNP\n3pyur+5nw0piIwVCQF+UnFqLZeHqyDjFe3mT2vLadzg8RTUyQFYaJVmJ9nxH\n9kX3XFMzMChAbknGFSOY0QGuvUQv616dSvsVsASNyss3D72jEDQgE5NwwXWn\niHtygrL82UjtR78pd9cAOtk3iWLx9eCKduT7Vp5ozQQRwwF90QWcgYt96dsL\nF8F4KlAIuLEIB4stvYNFU0P46GTzcL00hnZLw5KGKYBvqyB+LXwnS86qWpFB\nFO7B8WPN4Bb0szVA+zActEguXijU1wFfFeZ0T10ndqMtpbvi6qit6znBUliA\ndeEt\r\n=v1ho\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"56c73bfc3017545c66e2f29e7f3c9c1fbafb1428","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib","build:type":"node build/gen-type.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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.1","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.3","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.3"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.14_1608744576396_0.4598120409508284","host":"s3://npm-registry-packages"}},"1.0.1-beta.15":{"name":"element-plus","version":"1.0.1-beta.15","license":"MIT","_id":"element-plus@1.0.1-beta.15","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"3abfa4e26a522aac1d908486f0afeb9096c01370","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.15.tgz","fileCount":1249,"integrity":"sha512-CnnH5u6ApwMG3401DBepAhxOmw6K3cb6f58nZ55MR09A4Bl9/iCHkcHaf9maPjpuWVZ20R0h4x/icmsoziVFuw==","signatures":[{"sig":"MEYCIQDHS2TH0YgkT/pLuYg2qv2rBGjaJDiiAhLDGmEacWAKygIhAJj2AeEuCBODvfsJ2Mg9e+Tx1p1d4hswaFZ+J7CupvSw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6264924,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf6DOYCRA9TVsSAnZWagAAXpEP/1+U9pPJDTFE1ozRt6aM\nqK/NqgPPa1/o8ymcTuboCCyGEdfTsToGwABxatkVWCTyVLC/6YOdP2sWu8AT\nKnQ4OGD/kzgSEhYIH6d6jyff8Pn1xymaAZRW0auyzM8hGyoNCOUlnd+VkeRu\nNIGUf5aEJPim6oiQ2P3BrWSJAlo9TADWB4/TXqpwtF1TPXq1NGDuwk3ecqFU\nX91Dc4KSe25XR2mvRKyQqf1nVHjMK4CMI4pYmWsZg6SkjqUClx6H3Rgt5ip9\nBj9DAh5PwOdOJ9Sr8LV4ltlcRcdBp+ZKrZge+ml4sQdd5OoKLY7L2bp/9Pjj\n3zte6G9qyDKTH5/SxNxPEEDAtmfxBM5wyT0z6x5uaaQRc7zURp5VIfaeJaNT\nU0eVEHLnIo1nmwvDWeFOnGPJbDBPWyFxyf48qER+FrGQX8eKviQ3ZcjUlpZG\nkzN+4h/bh1J8LQDIe8svBaMmP8k/MI7tO1a2/1tX0lbeeTESG31ThZ+/3PI0\nPYOW3h0kubTqVzjjDIuaLTiL1ewYWDgd6bhhaXtcMK+iiKBpDV9PsfKqrb8c\n7P065CUwsLuiXJoZj/aP1CK163CMKbjZkEk9EpPhvjg8UWrvf6jCB5OjBpW1\nI2MILi1kjKWK9mN6ufyEynsHiWHxbKi0cfSlj60bXFrHc3P5dxd07Ro8dGMI\n5XCy\r\n=agNK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"691ecf5354e3796f90274e902cccf62bda321540","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.1","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.3","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.3"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.15_1609053079633_0.7693898962993353","host":"s3://npm-registry-packages"}},"1.0.1-beta.16":{"name":"element-plus","version":"1.0.1-beta.16","license":"MIT","_id":"element-plus@1.0.1-beta.16","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"0ae2b83645042f849c3c9f9d25e99b8cf03671e9","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.16.tgz","fileCount":1324,"integrity":"sha512-AHhjcTMBq07ia2BqlYbJSpVB1lzAaiNvktljNVaeOcQMS7+PA4tOSjGsA8IiRkdYB0itEAugA/XXcvVVgwvH3w==","signatures":[{"sig":"MEYCIQDRacHb9ySZNEsKbNtpG+sY9Vk9yhY2KGOnLtmSIuayIgIhAMlmrH9zL5qcOo6+sWbPPGRuPzu3JMJvfSlLYXwVQ24B","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6591302,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf6GJ6CRA9TVsSAnZWagAAo0cP/0nycxxQ0sPg8IUu99WW\nVDKZgq+nALBcV6rUNFlONLLSp6r9zmqvdQtpra9d27c0y7OBDhIloss6KKCY\nNUoyGmsE2fQVEtAYpuSjq3Al3Oob4kWE+xxuMHG/jQt7+RDtVZsd15P/geL9\n9cs2TDvLP9dtvUoVn1wYBcQNMgKhdUj+OUU1UtdBk4IAobJ6FLOAeVS5GdeV\nMmEQ3BN+GFxneqM/lvVkfi/GD9KuPxCwS+lsxnUp38rj5HdlMxyIvUlwzHbJ\nKauE8qWPC2YrC0bzJhHL7PFoJEYC+ixRTRwSIUkxhgODX7DF6+3rM5rz4dfi\nSUAaeYLqYmsHpY3YQ/Q16Hih8YWpOyn8n29wGfeuW8hPKI7o9Fq68wRKuYyP\nTO5FavnwKEQIu+zr5Jl3BNEOOXiu9jTvbWw5NzFSNs3cQ73xIz3KMySTcD9H\nJH/uaht6g+hgFM4d1UKF856OQB/7uWKDAndl073R8AGR00XM4ZTgUvnqYVDj\nAn9MaT/Wfmkbr5ur84B1FCBCpbTQOEIJALYoeVbDQ3ugzWsZikiBeGk7SeBL\nBoNe+JTGaG+G5MtUrVyxAAsxtQCRB7ObMzUA2FsJUfC94RKPrnU7XFIAHgkT\nwUAZQT7ne/IZ02paKXdjbz3mTKcTOlvD9oZcu981zPKNmCMF68OYmTag70K3\nCS8F\r\n=yrnZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"70c31d0bec5319bc623d86525721d6ac8e27c9b1","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.1","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.3","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.3"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.16_1609065082398_0.22508939665359096","host":"s3://npm-registry-packages"}},"1.0.1-beta.17":{"name":"element-plus","version":"1.0.1-beta.17","license":"MIT","_id":"element-plus@1.0.1-beta.17","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"0347343f48c4af293a89a3bef470dcaeb4c486db","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.17.tgz","fileCount":2042,"integrity":"sha512-YsZVmER6Z82b7d/0OGYkodAzswCeTVS/LfeK9SS0beu/L9pcMo2DoyyxocIeQgIPeHkvp9H6txXwN+lJvqWTbA==","signatures":[{"sig":"MEUCIDXvA0TZCPm4PA48IoMT0pssmI33W6VchYHW4th8v6f5AiEAigG77B96Gbro0ZjdqczYE6AUV7spN6Rl6Q1QBhZ16G0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8647602,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf6LTYCRA9TVsSAnZWagAAcdUQAJAET8ghAMKGlMXWVKM9\n6NkIJ3ZHg5Dh4gjEiOjLe/iJ35Nia1VhLAFqERZB+DydcWfLX5+mXonTAVBf\n/pqHAwDdp0TqH2JszXafwGbhSaSIn/A9FE6F1mh6coADFYR8HI+Rr0hxQ4P8\nQnI3hwQz+5A0LOF01Ra1JhuTRq+qxG9GUCR86eMk6Ml5IPQVbRKNnWSC+46/\nQfKOLk28hYgMaVMQnHeIC641qm+iO4xX3j8GNkHv3930765NDwuRzmDvgDAF\n4w46hm1DXzBk5Kgqxa4eaO1dE4JIAmoiGhq4uQn+yhQFeRAFngHA4DBzNyyl\nHMVr9u/DZ0F+Cxg0IJXuPy0Pm/4YZo0xvI9z07N5UhMtTOlioSJ//v6fN3jQ\nkucKaSIffCxM98+pj5xX9aJJa7EygyjX3Sm98E7tCBulEep9pZ8LBt3aw3x7\nmLSkhjX5zxjqfLXr8a6AaVrZYJXr7wgWMAB7axKZl5TiVmbj7u6G9v5y5dG+\nvEIEV5OI2QhmNGF58uNM5/Im4x/1szB20PyVa5sSqOlGM6T2sOqml3Cb8tLR\nJBkXCvst6eAHdR5WN/lKaAJVzqGpcrMIDO1fX1tL4F3aksatkDfyQ6N4dzc+\nHZfXzXraAAMEJQcVJOyzGl0VwfNbtmYeN6cCnBaw0kwBISTFVc5DoogKLxSM\nBZkg\r\n=/oRp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"a3a1c3508e418cdda9826e49940404cbc54c02ec","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.1","vue-router":"^4.0.0-beta.4","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.3","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0-rc.3","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.3"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.17_1609086167863_0.7061896988662733","host":"s3://npm-registry-packages"}},"1.0.1-beta.18":{"name":"element-plus","version":"1.0.1-beta.18","license":"MIT","_id":"element-plus@1.0.1-beta.18","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"3ba59fc464fea0ff8fabf9afe07e432f11a88f07","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.18.tgz","fileCount":2042,"integrity":"sha512-0TOPPwT+6/fLpEnboZQHUyspubIAdRQ47qLvkXfCQZxBPhWZlov7/JmYweraTI/ct+1ngqBnbHjYoUBqH2k9WQ==","signatures":[{"sig":"MEYCIQDAWDei9JnZtuLsExjjdXcmwI1pltVmCey+ZJhbCEfg7QIhAK4ZUdY/7qJKe4SKS/dvgT+YgI4COzOi9qHMpkPhRGwB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8668786,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf7UjzCRA9TVsSAnZWagAAxOIP/A2pmUQ7HNZ3/nQLVR0x\nWFupVOU3mEqV6ADczlrPQbshlWIBqzzRscaIhLjyITgFoT44FCdLj/vbigGC\nKyFzivuQ7UHWCMvmR2Re48r+s2OBODGSeXHxHqTwn7mcWcOT0EnKUxvn1++i\n650qfos891r5BfVtjZc8bIWCGmsBzKnOGV2sfCss3CwKpuM6/4exl8UN2ygH\nCAl6zxBo2wIsLC7ujkZSEXMSYeWV0DVctIfUN+95lbRtdhSbeiJvLCIfXA8c\nahYBKIhQQy0Cg4qsx8UX8Uk0RdMEN2OEzLx4d6XrPuGh4twF05PT5XVSh0i+\n9xaaMMdI6vJ7F0udZVKaneQd9zTl2meD/ovfgA4mOR1zV/chhokpoWTeaF4s\nuKV3H3Sy1CmyEiYdEldvb1tEe2DMM/jB9shxVajebDzJD3L2ZHueHsN+rdMl\n8YV6JWWm1DoAPBBcWitcCozlzhawhYQYC3t5GzqijPP+aNzKPx9kAgT3695a\nGVPqZo2Y06PRkCocE61BR9Z0MLAMADnbYOidSefjeSdbTcvOSjYUJtQImdDX\nHMazWaPlCpdGiOY9EBl1UdugeEbYAIJDsOZYh5yPaMU4M3LnF8hzwYZRw33H\n3GZzKmnAoc78PzYTT9CWFgtlnKroC/wbAFrFTzUZRP6y8254ooPoQlrOUcl4\nZdr+\r\n=xfIb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"f15d61ddbcf3f6c4768bad5f57936fc277953f12","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.5","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.5","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.5"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.18_1609386226915_0.7267054019698294","host":"s3://npm-registry-packages"}},"1.0.1-beta.19":{"name":"element-plus","version":"1.0.1-beta.19","license":"MIT","_id":"element-plus@1.0.1-beta.19","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"fb3d6b057bd7c5014c1086713fbf77a6986a06c2","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.19.tgz","fileCount":2042,"integrity":"sha512-bgtoHdr9t9OSDfjnM71VGOlno1V/umFghhWhYiHT1g/dtqpC7Du8fDzzoAO6QP5XrDuinTf7WjGjKjp2w1MKtg==","signatures":[{"sig":"MEQCIDsWlclpPo2oQwHk0oEVhWBxWDf6nIb2JtVf4D0MDEs7AiBlDNDJV1e7m+OfQJcH7HOwLndkMs8SiOJUSkrZGeUB7A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8676033,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf8FBWCRA9TVsSAnZWagAAE5UP+QBHtNZWSfK2L+el85cq\nePHvxneIbXlX+8rLyU9ggNCxTebFdg83OEfGn1qOP5ZcolbFSJK8NinixS+t\nPi4ORg8LiMSxECkZc/mCcH2tIK78YV2eiMJouLiYD3KQLUIE1rLz9TQV/Vhv\nFAfkmuwcH2tvJrtsCLDRmhcW4UOfBXvF1nP7zmwVFxFMOazeg5a272IUrHPZ\nhMsue5ERwJoVSI/6hEo90k9z7zMHj6obAM3odtJiRBJ+fW5hgxuNSirmcq8r\nV46/9POQimJ02IBAzp7Kxer7Ov5H4sRDIgisul19lF5W7e96d0h1PL+KWpcS\nJzEW1EHc+O0Kx/7hKh7mut692b1IfZUxMgP8v68Mzz3MEW4dWFNeqn00CtS3\naS1tnF6VMFSvNEKxJUzqcZSa8rPQcw9JeCFgEBVHtUgs+bLEj2lLBHpFRO9e\nnzJAJ2mZ6tK0hub9kIbm/jXiQ4BfaUPFQFyG0Yb+SmTDF0C+dP0cgdsJref7\n5Txma/w1gtPChsdNleRaRfMfxQPrJK+ntg6VvjGz0smSRnhwxnt4TLBvp79u\nhTi7fezmzaNSWnIEW5n4BEUjAV+Eyahl+DAge1Rg2Gq/cqP+u+hHfIapoeLR\nvMm0ohoTzLf75B7B1N2EUCrdZPxK5dJoBXTWCTKDwRBy2F9X1zfhQWkgx2CL\ny/uk\r\n=nzJK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"cb382ef26ba944bb87d4c4b437a6ee404db83f70","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.5","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.5","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.5"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.19_1609584726227_0.5703322559785768","host":"s3://npm-registry-packages"}},"1.0.1-beta.20":{"name":"element-plus","version":"1.0.1-beta.20","license":"MIT","_id":"element-plus@1.0.1-beta.20","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"3d5db7801fc4ffad371f3851d5769543a0bb74d1","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.20.tgz","fileCount":2042,"integrity":"sha512-ZVHRANBkPF9AY2EJeNrWNCRZ/z+sM/lBmZdVhFGcvOI3hI8QB3ScjV8F48idpQqMTi+AnuDV+Kl18RF4pKdsrg==","signatures":[{"sig":"MEUCIQCozx0zt/hQZlPrspIHgwHoPqgFarHfW4D0dvMjmhpInQIgWTuPMdV7mvmphTzHyVw2oJz2TLy9w19uZQvHDr92gt0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8669962,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf8pIsCRA9TVsSAnZWagAAAxwP+wVjZv04GGNsbg3MZqKc\nQ5AYBZttbfgT/egPChIZ4BsO9Bl8NXFkowKs/VHEMuOn39EXhGg/pRqYYg+U\nsWV8opOAaEYrTRomxIa59pgEK52/+RytJaogOJ90fCGyv8PiT7CotH/0Lr62\nqCHwPKwCQrTeQqi0SxrBil65bVVPvViT18fJRpIybszzj7GbjHZCIq9fjTqi\n45+kkxnvLpQG5fXoQWMtb7n2ud/9fK8IRBZP0pQ13Wh5F0wBV5HDH3cnje3Y\nnITo/cO+F+/S+CaymyNKP8+tHkE5qWu3S3OC726zbbbNmbGDOZew8/bL8tPQ\no/bqeEPkSgPtuJtujHAgIhyXOrx35d92Q0XE+6C7+lHGLRd+QGf0shkQfWn2\noys/wKoSu+RvPw1xYoG8qbEZE2k2qa/2snNvF/g3wuv8hYttHOSIIcmIFuce\nYt92ZKXfqVgh2wLgs8tQNEupR+7RWRi6NwBYGrKRjLapH77qH4GmUCmRoAiU\n8SmwC3ahx5p0GMs27ChWBXxJU3ACgc2Y37aquEZ7/aGDR64MMc1f1fH01iRI\nUPcsXONeH7RYt3e+HvgOlDId/vAWMZxtnqCNEnjaoh5YyK+JkcOYRaU7vQlW\nC3aatQyhaVJKbmCJOXcdEaDqwV/IqMDx4SWt6/6fXVA/q1dDps/1q4Iw8rS3\nBBzU\r\n=etBU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"c5f6ec3386a8c3102a9d577a415142429509234f","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.5","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.5","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.5"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.20_1609732651767_0.0007870124410258583","host":"s3://npm-registry-packages"}},"1.0.1-beta.21":{"name":"element-plus","version":"1.0.1-beta.21","license":"MIT","_id":"element-plus@1.0.1-beta.21","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"1e952a0ffb22ccf003c1c4e7030d9ae3c6dd67c5","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.21.tgz","fileCount":2051,"integrity":"sha512-NZmx+jCJlAKeP38M/6xGpPLoNF97bW07gC62juMw1fTrc69vLd3zF+PYnt09IHZBeY/yo4j7upA5FGOWJ5O9Xw==","signatures":[{"sig":"MEUCIQCwacBPCXMjQNUWETuaQgi2zi153uGJgpa0L78X4JLJpwIgF/YSjsITaxLveptCgfkmOVty2QYZ1y/9o6wgOay22iE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8680976,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf9C8VCRA9TVsSAnZWagAA0WwP/2w+AhuvVl5A76ki7FdA\nn9czAeeV2eVyyakKvOa9IMoLJPw2CD6BSt8l9Nod9nDzsZYWYGB88luRWxGj\nF3nqmy8uEmXj3OGqgNRDlXvm4nByDDnXm7sj3piAj8qtcFMmTWVyZzJLcc0O\nE8Wiywc7k4GatMoh+3bbxlXVC5zbNpaV/939XysHX/NRJpCGX55xQsnUE9c7\nUNaHzg5IlVbFrZRKNtHlcRMhOdjr8GGyo6ghpp1nwSujG2j67kuzlDpIVJcE\ns+6yf4zCtAE+0gHJSDkxjoj1cKVBpq8Ep4q28XX0ZgKZJnp2J4CYyFiTG3w3\n8r6DiwfzGyPm/SBsj1vGbEvvGfAdNEeBEBuj1IPFnMMLLVEl8jtGyzM/JdoK\n0AulhpEE2FcvDs/V/gl3bRQlJyTXkPGxEt6qoCnS0QT6fFuSQy+3Qi/bXE1V\ntnQXt/47rrY/sVyQ+SYANoS3xvyDFwhJIzn60eseZTjDy/Y3zxz+eAfgghuC\nDMFSQqTAK/64yCrTgyrE053ww5Q/5/ddyqBIrQ2YGUpFf6jcrpwllblJ0kn1\ncpm6k8MZtb52ymibkJnVeZ1+Wa411Lx62fL58xKK++GN+R0eGQ6TpQDEPD16\ntqi6XFw/N8ic87V9FTlZqUkA5lzcVDRoZC6fjjK8OuXxZqALdUqVRTUMgoeE\nM6al\r\n=z6xV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"43f9113de01f7b89621d8c726d5f71543bb2ee47","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.5","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.5","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.5"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.21_1609838356433_0.00531049168623543","host":"s3://npm-registry-packages"}},"1.0.1-beta.22":{"name":"element-plus","version":"1.0.1-beta.22","license":"MIT","_id":"element-plus@1.0.1-beta.22","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"5022fa5828f81af4bce1612aa30e09dd9c281a20","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.22.tgz","fileCount":2051,"integrity":"sha512-Ufp6KZ89rZtB3rG91BqqtEvBmJpeweOhfILoOyUP61BEZh09PvNn9MhZf78arKG5g8KpZ0udTrOp8Hy4Z9FQ3A==","signatures":[{"sig":"MEQCIBrz3C7QoUYRra1Uru4L2qt7N1cF4oeA3mZM81+77+h3AiBIvctVxHram/2/yLG7UbKBoZhI7XEOyCLc2FX7hSeB/Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8679885,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf9dwfCRA9TVsSAnZWagAAzJkP/3JxULAswo1w0vIVJnfw\nkVO0UoN0T8C0jXxJlgubgEhcvaStIqt+TCYfKQ8g6bWxm6Goj0CfcDooWf0z\nUu0ryPQEZCpK4j3cC0L/64RYUrYEMT8RLf1L2sRQ7asM7X4dOZ8QdFau5+Au\nuhw/iUmfo/pVa5SLQFqgd/+Acbv8exmCJGYZj05bIrw+rRLrZVbFuLttYWrh\nMK/fWDXJPpBXtEqZhhVQ/wwtXOy7e7+KnzGysgt7Q/hfaF/lzswF5Z4eJXAp\nhMZSKScsFhB7tmJotcW03EovvGYn46nBqYRoRkMdo34Zl0kI/YQu2nF/wGtQ\n+2W1VSpcQUrB5lzRGMlTfFrv2c2B7WBmz7uz61rbtN8zJO/7MYyxHTbzHi4K\n73FbxuUG5DBx9ESmgqReT/x94MVYvDNj2HS9mixzUSGZ5KeZnpl9gSSPx0+y\nx5/WMVR3unOS5gaj3D315pXiQuHpjJR8ngEWOupqnSIKIOoEZLL5eRNKDIX3\nrpOx4XLeOIpqvV0hL0HhEQbTq/Q5Y2aOzyO+5ZmPZyd+MMR3+PjhF3vELA/e\nLBQSdS+7ANZdzHrUEIyCuHN+ZBu/7EAeaeH3esNKLU03JDxYcJfsuHUVSGDu\nIgicKESZEAXGrLtTp9p7r2J5y2nemAUOStssz2uv8WAWUHfRlOhJbkKq5kw4\nA+EF\r\n=ElvO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"ade9a18010f052d4b3556486cc1be878c8f8b6ef","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.5","jest":"^26.4.2","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.1.2","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.5","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.5"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.22_1609948191371_0.8192478942786294","host":"s3://npm-registry-packages"}},"1.0.1-beta.23":{"name":"element-plus","version":"1.0.1-beta.23","license":"MIT","_id":"element-plus@1.0.1-beta.23","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"41e7defbe6c8d470e85e1e79810f945d3a785d7b","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.23.tgz","fileCount":2065,"integrity":"sha512-ASCiliUSf97N+BXzgEY1PSpS6P98gTRTYsCFmA9Ssc/YyWqUSHg6OM5R+oTRoQSoGH2rNzml+wmcPL8CrbjbnQ==","signatures":[{"sig":"MEQCICWXoaBrIMGCqRcNen3qw4KDZMbMXO7yiWTttFJNG8z/AiB7AsDYx6t53y57GhP9zUO+tXeVPG+n/QqCFRM4oszYQg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8718019,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf9q9XCRA9TVsSAnZWagAAORQP/RGb9UdB28VqWgvUQ4eW\ns5nLnOT9DLgnfk+xWWAzcm9mDZr+yZLhdx2FX73A7aqWCJEHnMw6s1Fldx2a\nzEtY3ZuKJ99WNYYVn7eMCFIYhOuUW9rqj1LQMnOetJOcc9yrQgkENM2zywOz\nI4JjVBrq5bJV3CLDN7vMvUDwyFnjNQ2npCPhTExOAnJbb1UZixZs+/oDYJ/4\nXSTEC7pupMksFHeTrIAcraNmIervtFT6nDg07lcNymr2if0yEvoqgK9RKAZN\nluais1SCuvTj5wRYLD+QWcXhVCdka0f9g1VZiJ3+3xAAG/CLNaKsKBxA+rSu\n2IqiTIYdC2SnPbYiZF/Ky3GY0MSLfoqEKdaLo6oD3yn17rQsF7RZ5Vsf3w6S\nSM92xW6YiBK/WHv+ZiJBR2buBj6qx/1YpLR81px+ttdINC3Fkb3en0el2kDX\nUfxTfBirnIDcmmM++v34fZZuob9Qeax7kR0mp61sWhGmo8vavqsPRCQ3l409\ni2C18n2WjnBPGu/WGu96rL2E8louzuHpPNaIQmxdzINXDsvBiGOaXU3kOHj7\n2K/jKtpeGK5ABx4AnENXu/mbjW8DKUMy7UBPhGJWHwrs7gfR8d3qLXbDEuW9\nHq/40GqKkQDwueeJBjn9SFqF8gJUhz33RqhtVe8eihgN/Cz/hz4Dxsyv5zhz\nWRIH\r\n=v9EX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"e844ede9ce45a5c15357bcd3ebcf82afe3f07d67","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.5","jest":"^26.6.3","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.5","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.5"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.23_1610002263379_0.1913031706576025","host":"s3://npm-registry-packages"}},"1.0.1-beta.24":{"name":"element-plus","version":"1.0.1-beta.24","license":"MIT","_id":"element-plus@1.0.1-beta.24","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"304b17e23fe1cdc5d90fc0c51dd16b34b237e341","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.24.tgz","fileCount":2065,"integrity":"sha512-IIBvKrPRa4hmL7ATDvfDvsXEEyegtrPCE+DnIuVqrh9lSVpOtiizrKi8rcoyiZhzoLjrVYslv30BHPLQiHI3TQ==","signatures":[{"sig":"MEYCIQCQ8huRxHuIUo37EMDbSNx96+r8Mw7uoHfYi04ld4yERAIhAO5qQPfkhBYcNf3RqGYgK4JHlG7UxAN07pQ68MNonSKY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8729965,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf++7BCRA9TVsSAnZWagAAigEP/0j7mSu2FAE1vWkq7E23\nrbNR9zn4OITyMiOaWHOvCC7Enid097R7vqaC0pIyf5LBnu8k/GYdyYAQ4Ljx\nRrqJaCSqsR8WrvYzn0V+dgfjB3yfR9AyC94IFGYipt6MvciJcv713MRb58ds\ng0vrY1wXsuA8tk67Tn23WPXqiyhALof2oGEOc0K0qN4PHtx+5MRyhijVkpmz\nTQ3QNHFEFyjr89tR8uQ2q8/e6Hi+Fskibec5+5yBn8AW+UGi4HehsZXTNikw\nZ3QkpemkP/de296AD14Wx8N0gdqtl0HG5BpBoiYEjhmnwB+Gx3TQ2FCgjPXT\nzMcnOczPNp7qGcCteulTrPm3uuXGqgYLpbYlCPXjGhU6K7xbEx6DrCejIOgG\n02JXKiDwKvv12FnOLZeSf/CXO8b9yRlQH8OR2sKWiGteNidxRLyrMHJe9Qog\nT9TBSLHclymcKEAkz/IYvUGa08u9vZ0KhDnYLkZnUzvznSoGWQCpJK3I7HdF\nkNW7EQvxn/fY5izZXI5S/+yI+8Ljp8WX69u6hmBoiEc8yd+Xd8YRvXw5ZUqp\naNCQyMKUs0i4eKvPpQ5HK23MYdI+YMJu7JCxixg/TdK3wgXnC568UmdxhAH/\nGiIRDE7z+t8bGPw5h29Xs2XxgGmQ966OJXB3Rpx/YTuYQg+iCN626hYQZvNf\ntV+P\r\n=L+AF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"070e434994804b4acd783877fb0a64caebba716a","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.5","jest":"^26.6.3","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.5","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.5"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.24_1610346176653_0.7134205987645308","host":"s3://npm-registry-packages"}},"1.0.1-beta.25":{"name":"element-plus","version":"1.0.1-beta.25","license":"MIT","_id":"element-plus@1.0.1-beta.25","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"298d489c77f126deee1b89486754ba760b7cff89","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.25.tgz","fileCount":743,"integrity":"sha512-DCv1/GfaBOcdRqhHguLtbhTTaWbiA8FDmv9dB6+z9tCgU06+HPN3SxJtL215aoa6K2cx6FaUPKJYE0h98bQC0Q==","signatures":[{"sig":"MEQCIBrXlJWfnsdbAn8+wOKU1MJt2PJoZQlY1/IKZGP6TpVrAiBjv4iAZOG2s0n27fwPoYrDhWDatgtELOg8PPbvf2dSzA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2134475,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgABAJCRA9TVsSAnZWagAA7fkP+QBvn/HqxFr8/cbTTGnH\nesAWoqPNAx/UnhQE1mUIOP2TSZneGjng7BGChD38CEFEso0fUw1RQ8lrBURS\nHvbNBKMImOywA0INuyAUM5KXCo8UJh/AJDxXnxWLI/y4FNxklV9jJMQfC3kl\nAik463ndxHRfULMpTfu1FQVjNG46PYTzKNe7cfrjWED4i5NdkzdaY/st+5JV\nNPB7yH7sFhb32vIdXGAH2qqZRxUuJqUFPB4hzGeBnYu0QBosv0lQxTX1QJMO\n+SaHy8M5yTBgnipFrW8SoNpPw0tdEMj+64AiNPbsUojABMo7S38Vs0uuK5oZ\nEdNBppq4duvouPqhrl8BRXmRRScfiM+HibbujbqMVjgKnNrt6rIG+22Hp9eh\njfNUFc+mkMYJI2PpfacY8xbNV5RL9KSYre+xAk6tkOb6tLOlRPwk68msuXt2\n+YVDX7NI70xlxPfQw4X2Nkt8H8LHKLnwAVo/EwIWb3LCrEyljQnoS/p1YG4o\nJuNtkuN3+Fp+B4u3AcOeDWkKeaen9AyT1st58gKAYc2sC1NzwKwPr8PW9DRD\nc9HI/jXHbZJDdydM7o6kMy8PyzLjhlrIvE3yz3BcBb0Gzc5S0UXvm/jE6NoM\npArmCqFBUQjLjlvupRRh3vbiTn6FfRGjwuJFFl4ZAR0rmHWs24mQxBZoQijn\nAY83\r\n=Y808\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"addf5c6184957e98d9c084158782ef68e3e51ffd","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.10","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.1","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.5","jest":"^26.6.3","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.5","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.5"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.25_1610616840607_0.32127529921858256","host":"s3://npm-registry-packages"}},"1.0.1-beta.26":{"name":"element-plus","version":"1.0.1-beta.26","license":"MIT","_id":"element-plus@1.0.1-beta.26","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"f24181aab2569b62ca01e63541209b70d524b8ab","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.26.tgz","fileCount":2083,"integrity":"sha512-nFzkn31AlZ+bXjnAAeXRoewesC57fI6yaUbxZaE+f1maj9ll5dbtiwk6petJhYvjQ3si4fN3A9P/qZA3ZPeyMg==","signatures":[{"sig":"MEQCIDSdo2YNTnc+0oZ+Ypg/9X7Mxyhqt2tRXmfI+7kRDIj8AiAppOFQtQc1fSzG58B9s5C0Fb0Pa/PHHt3QlIePJOvqPQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8755306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgABerCRA9TVsSAnZWagAAi6AQAJV3yUPmx5G76/VNOZJw\nee2QbmJiWUcbV9I3nWYBWn/uueZlw447l0SCy4I1JSYVT3qRfXkamvxAmSqO\n6Du6dZsRZ9dO0DUwVARz7ek7YE89b5p8o/VQkYMN4lg/VLd1+Sd+IfpX8fXy\nsgxRtKHFHaxAsosb27qlF64G2k0C9nBx1qbrhKnzdqSA0nf9IJk6XiTGHdRE\nAefny5hESg5UdC2lFAXRFNa/qzncCZSqJWh3/1taf94HgSmO/yundmvBTS/9\ni8MakZqMxHK2vJAB1oscLsZuQ2/hBi4VnLs75BKGBqo3Xcq8amLKP3Uu0DTZ\nZ4I7u9cE6AS5Pby+GLxTSFzTtybEK5H7aUGlchZ5MyIYzzVxpzpN0WNfO2yZ\nfXkNgzYRftejql7zpeC/aVtf40ceNOCa0IAnVG+mc0eaAGeuJKXpVLjr2w1l\nt/095lOLhNmPU7V7LN0C3noqdLhBM3w85UdYOWG8iM7hipu0/1r+Xlud7xm5\npJC7rUYSHcWRO4C8OCSRyRCDN/X0974aM7bogMuuHyYKfp9AsUNQ9ME9gRTU\nOQTudaZJ8azZ74Zofxq9OFMaDTZI+v1N4A4UlolYBmnariLcqIyDEJ4q7cXJ\n/Jww3BQLv4R2kfVtA+IRzX2e4trexcmN4ZSqBAv2bIfVRIc9HfAt6MTrMXEn\nospA\r\n=qFtj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"bacfb74b726dabd86eb6d128372624ed600203e0","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.10","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.1","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.5","jest":"^26.6.3","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.5","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.5"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.26_1610618794927_0.0007507163455147126","host":"s3://npm-registry-packages"}},"1.0.1-beta.27":{"name":"element-plus","version":"1.0.1-beta.27","license":"MIT","_id":"element-plus@1.0.1-beta.27","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"f7ea863e2a85f40d0bfccd9a3f778c883a844802","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.1-beta.27.tgz","fileCount":2083,"integrity":"sha512-/73TA3lTiRCBPBTlcXivHEjxhrdJB8jVHUxtfgrnBui3gSGeWhE+7gqEsmCmMWqZHXjE4FeLpGcnqCV55xl1fQ==","signatures":[{"sig":"MEUCIDsSXeOVHSzs7WH2u9ZfzHETC7kY4ZFq18nGfBLysf3XAiEAlbuhjhs7ocioLqTSBfdNZKw65lFOCijlBbvI46KtTS4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8756711,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgAX1qCRA9TVsSAnZWagAAEC8P/RZRsSQYWb6ji+GcX7ca\nU8VWHA809xLMG4++z6MvWDFvnY5HfpEr5vU5TV7/D4NbcADRXB3BG4H3SyBe\nLn2qprPtLL5zmQqhFCQZvyux8dQ+7WtS30qM1uhV1IprWvOmM64R8PSNSxil\ngborJ/qLVNbbNEk18tOAepqY0pTY5pktvx3dw9jBXLmAmzYah+wS9ghqDRn5\nMngPJZZ9QxSoxOiVohmx4fGexXBxxWbXWQi1doH1JDsoUbOUjLald569z9xd\nAxDj3wcz1B+bo8NetwOLQ80sVkYFX0+oBBPQFpZWRDs3Xfn3L0JbL0cJm392\nB/jOjvnYQ2SEB5CIXnNVAD+sOJ7Qp26Ft7om5AK+NPE5htjIqsl8yIUn544V\ndtKJlkP0SbAIZ2VCOQv88sg6MqhywfDaKjuUPftaFPkFYKEZijgQ3G8gjNDc\nWQ2n08c1d368eTAV4WzdPX7w0777eKpSznlYd0J0H/RtLhTknYcbFfjIeCYj\nWoTe3RFaPpNQ6TNVZ8V0IcNEYc/cY558s2apeRvzcp6TSf8wRo5hngfjXM97\nD9AZOtlFuC1+yn/kt2liDFXhfej6c1uzmrf7hajK6YL8vOmJt1iGQbn5Ntru\nIa6xaFZHxuL8/HXAu0sfc1NCclxMheuQb9vJm52j8U57d1TD+mU7UrlrGlh+\nUeGi\r\n=r1eo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"a043dd820f3373e5985813d0809bc782bd3c5bb4","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.10","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.1","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.5","jest":"^26.6.3","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.5","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.5"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.1-beta.27_1610710377450_0.910272267660365","host":"s3://npm-registry-packages"}},"1.0.2-beta.28":{"name":"element-plus","version":"1.0.2-beta.28","license":"MIT","_id":"element-plus@1.0.2-beta.28","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"58b337204e9448d8e59c3bb02140e6dadfca11b7","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.28.tgz","fileCount":2085,"integrity":"sha512-JlScFjSIdVGvzTLiJewLBMQvMVCGcSePCcbu2QsqXiVn47G4Qtq6Om8cm2Uq/gP/R6HH5OptjEAS78livWF3Bw==","signatures":[{"sig":"MEQCIEgsqhGqqQ1jnJs2oDudR2UOLWFquhagzT8lQcyRlxIxAiBHsRNyomMN8tCWPzc7rd1QCTfgD33jgYAGagwH2vpRPA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8847269,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgB+VCCRA9TVsSAnZWagAAnawP/3qjgefhDwsq9RBQbOVz\n4KQMPiNmbMQQh0ncrv6VUlJJeB4JGVJFFfXtwv7kwlnSYbU0GvZjmL2dJNag\n680/3UsucyXv6KEnNPjGrtyMBwFCcQP9szS1sC+q8gRY1v0w/zQgfDO0Y8/u\nw/H30XqbuMEwnUQa9501EeT4J9GT7mFmq9saU9EWjhErGQY+ylVCbkvDaPHT\nw3xW9iJwRqyunyivITCOlXxknFByziNMsv8STyvNxn/LV4vHVj/38cOfFyHU\nRRF0G/oZERRTmDpUHh6aOycu9FiMlvn3upOzUZxQOMVZIkxp5mk9e+rugACp\nJQBUCqauleRB0t78KaSxVRgd/sFSeFsRWtYYbqBYzL9DZdn0IFqSrP5AMOi4\nko3/Ylxod0AXkyc8smh9Jm8Sb7zHDcuHN9YraG4Xs46YYeSBjUnTsZ/Jze4A\nqiA+UKhU6ttmwWTDJR+i6hrsGX3SlDpNu3BjAQM8UZrmhMVl9ab4tIDqGq5y\nAFU1+j8zvpi87rlthDfDhS3YxoP1wyHNo/D+DYn9O+ERuKfVVK+6b9cAyp1K\nEVp3YAh8FaF1zq1xpSFc2vdEgc09Oj86xkaeQT96QEyTUPlp8B1wN0aiN9ey\nQkpFiYP6T2kcYSeeA32Mzg+pYXWvyoZ4M/slAOuIjGIoELvArjCZszq8t+iS\nXY7p\r\n=xQYz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"./vetur/tags.json","attributes":"./vetur/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"bdc0f6693c430a8a54e0573598d10ca573820f7d","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.10","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.1","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.5","jest":"^26.6.3","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.5","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.5"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.28_1611130177858_0.2026994770995192","host":"s3://npm-registry-packages"}},"1.0.2-beta.29":{"name":"element-plus","version":"1.0.2-beta.29","license":"MIT","_id":"element-plus@1.0.2-beta.29","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"0ce640e07a1fdfd89a75bfacb2006a0899a6b316","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.29.tgz","fileCount":2086,"integrity":"sha512-wJKXQS58OXOBzOViQ44LfvauitlSx7HSZ3DAAgShZL3tUTnXX0AQE6w+UISAwql3lp2g93M3Yd+JMNnt8VpAag==","signatures":[{"sig":"MEQCIGgSQi2pzeeq30DdZ3OqgWr7DSvJ18X55YVK99XHxU0QAiBRzpYiuF+CJnrqD+6VfMIKqxpEkrBslmfIM1J2rNudLg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8856407,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgDptJCRA9TVsSAnZWagAA/coP/0JS8Q6VxOmcfXtK9Piv\nMd//lUYqqUL75hg7fEoe3yJIwtCLAXxuxX8r10HSZG3PRMMfYQAIkuuCP+Zu\ntbBQZJJLFlFeIYXN00HBYvDpj8TuoB7J8q7LW+NIDpao/elILNMJ6dMy1EQa\n9p/4/HpmuBZscAYGpn/P6SrTxi2v6DXfr54mqQoM56Zlwdfe9Ukv3XP4p71d\n9UeOOdy3sobvo4kXlVAV8m5N/7J3+OiP9PnplCAGY75e8lvO8noH6jOHVjLa\n6vLFtzmed7XNMFveTmS8ePB446FFY0lOC54JVwpZx3lWHTCPD1+Gkx2fabQc\nR3RkTESZlW3CuVkxZbB3V4b4/EfNc/JqDKfyAaFCNDzFiBboBgSyNifYKBEW\n7Pcy2quJwumEAJFoojvjFW8GwZycFmXQDnFOWeUikoAZDkUs/eaZhIAvMgw1\nEnWngVamRMvuuetlnQGwEJ5kqvFK1CU4ARB3tWEY6m1IL0JNbKc0VibkrNyg\n5PeumTuLxMhkbwvpYGxIvQoq0OSxaAObWyVsjCvT881YjaWqh22QQcYX0rT4\npri6DNykioktBRl6PmfcDs/5kXTWtR9ZY47lQYFMpojtXO2gXvlNDrTQhlp1\ndaAVkITYyR2MzInF9/YyQl5btj8z4kpZMomJc/wHK0gokYdDbWEtZefpUqvn\n2tUL\r\n=5LBa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"./vetur/tags.json","attributes":"./vetur/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"40eedd9460d47f81534a33026dab7efe1c77fe4f","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.5","jest":"^26.6.3","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.5","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.5"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.29_1611569993140_0.02639112748394279","host":"s3://npm-registry-packages"}},"1.0.2-beta.30":{"name":"element-plus","version":"1.0.2-beta.30","license":"MIT","_id":"element-plus@1.0.2-beta.30","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"9b16882b97169df0b832c8b35c46cf44b256dbcd","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.30.tgz","fileCount":2085,"integrity":"sha512-eNjdeN4PLBxHlYh7msm5KBNvAOmFMwhtMESveg+H2KhTtTp5beUcaBWZHFHiMmD5eP5IQsgD7Vw4XTFBvg3hNA==","signatures":[{"sig":"MEUCIGsvT/IDrEgE62QDeB4wJD+9RjDQQYwUq7UbJp6D0dz4AiEA7h5i8DIM+e6aRfbcxGkgpMJFKIR1n0gAfR5XLeZvOCY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8866896,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgDueCCRA9TVsSAnZWagAAWccP/2Bqa9GF2WmUJgzga3jP\nDFwRKlelv1C4Yk8PutBK+5cvqpz98Cg0HPa2YnNBoTdeu9gQumzcktl9Izdj\n3L/cJhS9VyWqaIWwdov3Ql+0JF6PDALABHdxP3p0utSd7KnC+Z84f1BKYUrh\nFVww1qdflZTpdiEFGWkbHt4xNlNkCpf8mOWXHKqzGbwiN1WWkpfPKfelI4c4\n2U9ChNVYPGqHbcBobPOCUYY/CEiFFE92cJqI19ttxFGtzD8dzfkuO49GUVlS\ncIsu6UrNjkLcoZk6+xbUp4x28M0DEAae+ggQtocarVM7PhIjcbD9N0JH4Zcv\n8kXHm+9qF4yCp+sCgebLcCE+DGROzy93+BSVJBp0+szRWWLh1bVBYb9EVzCm\nZxRzmCP4H4WSiYiOsl6TE3M44ae8JSzltbac25AtzjrrVwSByep09bXr9R1D\nJaLwIsWmVFm/Tpa+NzgcdT2Apw9QfFtgNO9zgJKGMzPxnbJQWoFORO3fcto5\n/gLsnYgnc2C6wzmkg98uf36u2NQ1cKXCe0AxNHjHTGUFjl+4z6k80aSjiZnc\nANwP/OM11/GfFJRz7NiSh0DFNX9krpzfHnBYEG0sTqXzCYAjC+lS5/JNNP1F\nZDFIx4BP84Cs7LLz+0B3jRe4n+kar4ICyKTgDJ4DGLvgCAuaiZGB5SN35MvZ\numG1\r\n=BGtx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"./vetur/tags.json","attributes":"./vetur/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"dc43e7e44e59793bff90d1b249fb94c2c82490e5","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.8","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.5","jest":"^26.6.3","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.5","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.5"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.30_1611589505332_0.49634407635467226","host":"s3://npm-registry-packages"}},"1.0.2-beta.31":{"name":"element-plus","version":"1.0.2-beta.31","license":"MIT","_id":"element-plus@1.0.2-beta.31","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"61a96111d9e9dc9d1ea511e213946db681471321","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.31.tgz","fileCount":2085,"integrity":"sha512-ujM/vLqh3LViUbWcACpmQb60FT4o/nE1nRmPTeMcVhcgML1+BA51woPG5FOmAF8AWFB1m73VGzfex3hCoC6vJA==","signatures":[{"sig":"MEUCIQC17f4Lac3LtVBZ6aI3ASfXrDdobD1uwg5/uECwI5LGSwIgF3AM0mrOArc2zEhi09EIYA5jLoIIPDJdQmCJ9T8zefY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8876990,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgFpQdCRA9TVsSAnZWagAANIcP+weBwE4AxVVKobFMjxvD\nUMc+UpLg8XeVV+7MBe6mbF1V51BPyFUWnPk+rpKPis1/JCWeh+2arFwHgEBa\nb2pHfmDGJXvbYZJFFgXlPR40RSbCpf6cOWNnqlU8i/whOJ1exaojf7gHWnsH\nUFikqfjDezKlXyJA6VvKEJucMD4sv4C0vXNYeHZNlShXI6EvqCcxQ/lqvD+x\n3oC3xlL3AnOPGj9rRHB3WX0E/kt9WwA0k/iu218935PA3y3eAEc7xc/eMJwf\nqlq503YtYa5iEQasA/cBAx2byqY5L+hHbUMI1fv9YXVcIp8byQyN9RhaPMvw\nAQYflS5QgScK2TfRWL13FF4TDz4f8YJl3vnBUb0MRk0urSfruihqhbsJSA8i\nIKQw/miIhbq7RWv7o3XL1NlKaafwqE+sbxq25mHSSxwBcnVmeNwDRUFJsgj9\nsKe7Vm50k9s6tVNe2gS4UuntO7RtmesaHcqVWXTKkdsqQm2ZTj80NZ89eSdB\nTjqnNPswSn/GzQiHu+UswURUKhxhxcVmwc7QMjRCydSJ5h1uuU4KsWz7G8RL\n4htiIN+nANCGHsHW+J9vjG8bJPkX4BogkRxyUv9myeKSmskuWe0oGtiReoGW\nPKKK3TXldcq+sP7iUOSu8RcCkVdZegOFvMw5mvDfzasI9QNcxNI3NY2AkCxK\nNtbZ\r\n=MX6D\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"./vetur/tags.json","attributes":"./vetur/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"c8d1f8ad10cc3127503357642c90ffaf010e5335","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.10","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.1","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.5","jest":"^26.6.3","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.5","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.5"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.31_1612092444921_0.6584382026257236","host":"s3://npm-registry-packages"}},"1.0.2-beta.32":{"name":"element-plus","version":"1.0.2-beta.32","license":"MIT","_id":"element-plus@1.0.2-beta.32","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"228975cfc2255993ef7ccd90238cea9a707f0742","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.32.tgz","fileCount":2085,"integrity":"sha512-UzRHAELlnz6aqAi5y4OyNspQvrgspAcK4dxSR3chJXmzXZIvG2tqAwu2Whgte+Cd9fptpFYPIdrfVdznwK7zCA==","signatures":[{"sig":"MEUCIQDWTtWs1oHbJDIkrYWxG7WW/Tzb2iTI+1ZscOzfo9Xe1wIgQYbzk45vvhR4iZwFAE+zGjM2t/Pruulk3GqpBCFtBIE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8897937,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgIP0WCRA9TVsSAnZWagAAH78P/0/G/pDNQnFRTCTVLNA9\n42I1AtiYwtUVf2pAxx+toxrnWUJSfSsXX9Mx9CYqgm9mWnQca+dqhIUmALUz\n5Hs1zMpzs1iJxtD1yX7/W6tmix8wj/o2IWgf0L5yt+nNqcmswGjGUI/64WRb\ndsrGd93CQsu9r64cG0h9jD29xcS7dqMSMbu80xyIgmJcJBefnbgxpm+GFn3m\nb1H529l6ZydujflE/v2FcOQTlS7vdOBp3CAgjVCm3FV/BciUGGzCwFRPIXq/\n2TA6eFtDunD6Y0tG1o75LwPx1EzPAQuBEFac8KK8TjbCCpvsOWHpFzmgIv9S\ncw+b9mcTbJDSX51VLQxE+ZR+DbWmKr8XTUD3uYCbzGF2LhQRPzaYd4nkE/tk\nhJP5E9gw5CKQ1YuCtX3bm8sP88ssUNA71w5Y2mQQSsWNmfGzfndRUMSJQzlp\nde8/QRNd7j0UiXZ0V0ZW9EHwO6xEHgl0W4xdYblzqKYhCcUb5kQ+UGLcU9GI\n3qt+a9p9FmAbW/XQTcoujWfQMucB74Tx1Yn5MdVKvsqnWi34YLEZUm08rymD\nlyompF4JIn+HDmlcMz4QAiCJc/paOyHr8CP2CzzXzRDct5jv1awnDdVFfdI4\nu/hZ5QOim2ge26Gx09FaTl3jjN3Fw7+tEc+AzON3btmBcwB8XEd/e3qxrmez\n4InZ\r\n=6ST3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"./vetur/tags.json","attributes":"./vetur/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"67ea05eb2cc19a0aeb3b3b6e7192ccd8bf5a2ce1","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.10","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.1","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.5","jest":"^26.6.3","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.5","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.5"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.32_1612774677950_0.4034784255051729","host":"s3://npm-registry-packages"}},"1.0.2-beta.33":{"name":"element-plus","version":"1.0.2-beta.33","license":"MIT","_id":"element-plus@1.0.2-beta.33","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"0e924c8872dbc14e916ed5d6452d9799b04d4c60","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.33.tgz","fileCount":2085,"integrity":"sha512-CHm+KO/d1rJ8R+0S3Hi0xwHhia5KSGChp/w1M8rWZNDQsjHJv/8CEpGSet8htXzgpl4amIFEOb7+uKP38Hu2Xw==","signatures":[{"sig":"MEUCIQCyN4fr6HRjzsMQb3CnpkIn4LN3zxIBLqKEfATm3mYa8wIgY5z3K+VC6tOHno+d0OmmFrcpDtcNlWSc7wVCsjo3beI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8916666,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgPxOwCRA9TVsSAnZWagAAp3sQAJ/qjYDLkB4Q3ZWtZ2TS\nGSDq5m2urtQHf67CJbYAygKvdWKkluXiY/SB6FCCW5CCqrEKRObUyHv1KAyf\nGZRcuC0Cwbu1E2GXa3hgKgPSuOcTPgHW45YvpKSdz4J9EQBCRlgkq4Dp+NHJ\nW82nSMJ4zcRL+r47OsJJm5Q9U1ah5EQNohO30DWxlbjYL0D/mP2ntmZW+bt5\nX5Sw2EtKvn5xAIhsyBMpqOJ9JznZdtEmNFWct9xx3tRMWQeXzCf3tY7hGOnY\n0ylDidG4i2/5C3ZzK6W7e2FrCzOjnndTnM/Fq6YE/lLMrtrEheKmh3qoO39g\nU+E5gg4Lyrv8pb9cxU++rhtZbWA2LBuOSY8I2lGeWYe2N40x/88RzTJpbA+3\nnrkPq1avr3ZCpkNemXOeukAWi+lDcnRKgrNB7WuPLG7K4tVB3nlBlwYnGNpG\nTLMguOdXC6/bLR5R0C0ZnuBDpp9HeY1cVS00uhX4TBjgYTdv/dOWxiNYpyNR\n2OiuPDCIDDEdzdY6K+Q55zlwPiGoCZfnabRVcQAf7prTF34EnmQzCefT9aHP\nF4MWdDr+ROquW1CK6zdWdSQkETYNBtByw2WiXCgL6MvRCXU9kX0ca34gHXQh\ngxc9JGq/BslhgPgEcusR7+tJucg9//gdN4Z08LmihFMhJNjy/GiUtUdMc+hB\nMPQ7\r\n=D+P5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"./vetur/tags.json","attributes":"./vetur/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"66d522b310fb70d1f6572efebdbd028c28f9593b","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.11","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.20.2","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.7","jest":"^26.6.3","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.7","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.7"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.33_1614746543703_0.5432914514811762","host":"s3://npm-registry-packages"}},"1.0.2-beta.34":{"name":"element-plus","version":"1.0.2-beta.34","license":"MIT","_id":"element-plus@1.0.2-beta.34","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"19b1fb8adb2408a852dd11e2d409e20195f09d4f","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.34.tgz","fileCount":1242,"integrity":"sha512-StYHJha8W98JQLOSHnfmbAHOpIBEgpjdwTc/ng2GjXlEE/oPc6bDbO8d3FmCalg0y9otvGqE1ufLFNTi3WjaVA==","signatures":[{"sig":"MEQCIBnDKbJC7ua4Sj9ezfKeqLK7mukXN6w7hmfhbBAl90uHAiAIR4PgNVlc1LaIu1zsVXwfZqWpbYFHqS8yQaK7mLexOw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6964621,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgS2f2CRA9TVsSAnZWagAARKcQAIGQbAt+t9FKTKq/OFuk\nRG8brbJeqJW2gPcInYvzYtu2PgszNpgtUUq9Efm1BcC+ExGG7CN5d34XFRey\nAlZNAsURH/WiyL8tfoGD6WVwbjC1FMJZ3sPqyhgor54IyQfeu3EB7Azb2S+U\nGs4U1mCuhf5nP7m9lJScSjzPbpdhfC/vsT/HACIFSZ5LNE+/DyEyN6v8QGVG\nbZ6cmAT6GXsiQTKZCYSTzsAE9sAjNrEyqs0sP6DzI0LVvLe1gBsrpdM0pSlu\n2EVMTprmTeQ4DfCxD3h1gMODCtzzHniMyJOH1q8xJAeSYei1MKIUaPalHMNI\nd3AUmIKeUcXByIfTzld7qH0hlENu7r9ABY8FdP4xv4JSEoVdM62V+/QHM+Ai\nWXF7WHuN3VR0oavK554ake/vjgehf4qeq/91480YO4fb2rFzg1vg2UT/AlD8\nwkd1/8x6ehzhK/dwvoMO6dW2zzZOAehrCuIeIb/w9M1h54M6ovJNQwGvBGW0\npOh24wYShb3fSxVthZq7fj48eMTqrYfej4DzkREJZcCdfwze4TCQTqLJygFD\noZhXLvshYgNRcJMytPWoWSfQlYr2tKUUL0cSsIZfegu2ezL0+hVqXD/mJkBV\nDoL2DK5u2v3vRQCnGCWOCVrnxIvFwzI5h65ifB3r7XHgbCN0F9oIpMNUU1AW\ny8cY\r\n=4dzm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"./vetur/tags.json","attributes":"./vetur/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"f2091973c191aad66e62ff2d890b8239dab7163f","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.11","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.21.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.7","jest":"^26.6.3","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.7","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.7"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.34_1615554550237_0.4093932670405489","host":"s3://npm-registry-packages"}},"1.0.2-beta.35":{"name":"element-plus","version":"1.0.2-beta.35","license":"MIT","_id":"element-plus@1.0.2-beta.35","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"158890bddf28f8495f261d02789bf394c5c97123","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.35.tgz","fileCount":2085,"integrity":"sha512-T12EfxbWoNOrWE2bzXFPJdOU3cl4YWuLwxE5QKM40oPw1VYPMRrRB8Uy5TwF8h3itxzsJQ5iFj2rdDO+q3Jcdg==","signatures":[{"sig":"MEYCIQDMUCLTRnYWGjJJ7L4J9Vt238wVjWukK0RAly4wk83SNQIhAPX5l1RK2h7USsPEqaoIBdIqyQ4UzbXBsZeDLtjYY5V8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8947501,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgTti4CRA9TVsSAnZWagAA358P/06niq11/+ltKyYN14wW\nZWTZpiF9BswSYrUu6/U9lVhSfXarUUDd02i+RRrxz6/SJ1/QhXbo+Y9E+g4L\n0N6MsGY2L97MNax7fuEfYf+bTOnWDcgGV4baE1O/O0zh6ZsU9eGon9UbPx45\n1cBzoJhE7aaKjA5LCR8hFfSI8JQToOQJkYJjkUJM5IsYueBIppMGVaUoJl75\nuq9pyI7boOCHrc8oFA2mi4eeGjygAtZ6NvPu7kDI3orYmjs4FUNIYFYbJz02\ncoDBf1NLWeiMuqOwZ9MxV+j0Iw/43Z0qJUDgEML4lSCEzsr4iuPPSktVmIsr\nWtB16tMgN+sbZu4UZVuRbGRuOPVAti5zrITXYg6BnCQhWa3Wf4xNnebrbbMz\nn+Q0yOJR6ltpr+/hRg6eAEHEbhQX1klaV+ByHPVS/On+TYDDJ2e8ucNurq7I\nrp3AzJEHqKL6iHv0qWpaiW4zcDGuZW9KIw8WgJn9Z7X7SnEhcHhcqcZKtdxY\ndghgms2xSl3POFon+QEM3W0NvfYVVklE7Dq9QbbCabE94kQ2wjDK+CJ4XpxH\nAkjsXyzCDs8xr4Ij1iLg0iTy8GJGSJFHr5+Z4+R7p+ReA5JEkBC8lF9CEyek\nz0Ew2kobSsUoKwwlYfRynFfZO0n3o2Pcfa0JEz1iJLvDFZEdYU2k1mGKgSXi\n12Yz\r\n=uAOa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"./vetur/tags.json","attributes":"./vetur/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"ea9aa0df24de162115351d0531f4c894106bf864","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.11","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.21.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.7","jest":"^26.6.3","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.7","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.7"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.35_1615780023848_0.4889031996737714","host":"s3://npm-registry-packages"}},"1.0.2-beta.36":{"name":"element-plus","version":"1.0.2-beta.36","license":"MIT","_id":"element-plus@1.0.2-beta.36","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"78a7e1be10b9622c4fc342fdce0801650f30bb01","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.36.tgz","fileCount":2097,"integrity":"sha512-5Qc54rH0GGtFRXpfA4ilpcOzdAw6t2m4mBXMXYjs9c5RSYP+EV+gJyfhyolXqZoOtYZ35ovBcqljlIJJD6Nz7g==","signatures":[{"sig":"MEUCIQClBi+XSx5b3rMG4KxLwOHwZIrMgi4f59xGgs52c3aRewIgebM6oBHyof9yiaMrPgfcGmEzUsZYt5LB7pqRDWfNXSA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9097162,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgYBO+CRA9TVsSAnZWagAAXAsP/12nVWpfGFGexUu9EXGD\n6hb6boIHpdAdTQeM/Q1CUDYvxpAFHSP4Fa4sRrETnqLm+Cu2cuUgGDqJVsil\nxXZMD3S+K48j3vmQADPT7+5GzLQdrEKv+0FcJKOwPecXZBPEdxrugDhuUBtB\nVh4i1J9gOVTydK+q3ujS12XArjgrwCYTKrz0XlVZ1hI5qQEzt+XDnz8qtWEa\nzqM+5TbFIIL5Tsw3zyO5YHIikQq3VNGNdp4OJihcHSZiy4A5Sy6i538FHmYG\nmi2ZCGq0Ykd/BwPr/0+8OvFV7RITuaDcswxdKNoMgbOdMFpx3YX4iB2W01cQ\nxqmn3C9St0b/RqEL/V3Xvi8+SSRVxh4ec1W1kADcIfs5/cQ/XdToLHl2Fht/\nr+MoHN+mMKcq57aje4Ah4nw2PbmZWNpCmJSUHu5yPzzAGS3+9jNcdI1AUZNu\nNH2eF4YMJMc3QyDdQXrhTu1q7GzcFdNRQJNT45sOrmfTZtb3o7II2bsjP7+u\nu+vIBVBIJ+UtR6fPlBMStkDQowTMjXBpOgzdwLzOZMjy0BBKzJYo0p+Pl+TH\neF6+Bfj4psbJLZJ1yJWx1jUD/RvuutZheo3inN0x7F9D8Rs4I/H27sYVYwY/\nKb7y8IPS9gxsSfIFr8Er3L/pN1b3eNDpsaK4r+dsRIzIQPD4UjvitmmZmyaB\n9nDZ\r\n=ns1z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"./vetur/tags.json","attributes":"./vetur/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"ac0612965f2cd7889fdc305dbf651be7df2e7cdf","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"./vetur/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.11","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.21.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.9","jest":"^26.6.3","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.9","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.9"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.36_1616909245804_0.5147051437767578","host":"s3://npm-registry-packages"}},"1.0.2-beta.37":{"name":"element-plus","version":"1.0.2-beta.37","license":"MIT","_id":"element-plus@1.0.2-beta.37","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"48cf0e1f69da653a85beae758b5d8db3ac672019","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.37.tgz","fileCount":2094,"integrity":"sha512-uoAub6wnIF+dgDskBLlqKyIMlo2+pOJARZhpepyIhk3XIbp17JUo1AtKgYvq0R0hIcJGfq5h1z4YLJYcbDDdyA==","signatures":[{"sig":"MEYCIQD1eZ2He63crxfp+9TLhPICW4/0BuX6vzQReIpCqusAGgIhALgYY/von1nXwRkCxbVQSQnKnszYL7KBGHZip2B0mEQQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8810725,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgbsuxCRA9TVsSAnZWagAAPxUP/Aox92dcposqNMbtZoel\ndByan2oUl1/H5XI0xTLEADCGqP9XGyq1Hzj2WdjmLnKWZYbUmw+6c29v3S7N\nhYTFOAOiyG4Z6dmu7XQUI94MAOC3K//NWSfEEx8pzoMARiNl4jRfoDUEv91l\npa1WDoBZyxldQKzpY3SRF4dDgk4m5EMF3xxTr463G4FgGFpaGWytataab/Qo\nk9SYTmNhxTMViokIWi7cyERGinBGNbLH292MUA58GhX2vVCEwmAiUrUOfYfM\nhMcFKq6Y/nm2QWPBcFqp0n+7m+SNRCe8yYQG+vYcKaa5ej1l6zoX5W+czhtu\nzqQubi8LufX/dxKrNSk1DBtySGUOdZwIcWhlNSmVnHYi2y0Etf5SosfWuC6x\n/tg3A/CPhMAV3aLWg6btiyYgDOwIXevluibXksFV0f2J1JtCW/vsQsz3q+tD\nI03mszRi+gCutqRyKlRMcyaWVPVJ16jXtJq4lbgLWmwwGjbUbyNqcratxmdS\ngDMJp8CeEq0z1ietGb0t2SimSk+sMDVtrxskEsKU7TxUMzw4s15r/e5Viqkm\nnI6OOCxaR/2FLF5CW5d5PVw/SinZVWzQC0VpJW4qbA3+fBNH1WDmC4/uEbXk\nVz8ZaHHenjEp+ztrDI/c2S+v/NXovveKg4PywC6pnRRxV5rqjcPPvGztvT7F\nO6Ul\r\n=50aQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"94024079a9f615095b27f4438b90c94b3e97d319","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.11","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.22.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@types/lodash":"^4.14.161","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.9","jest":"^26.6.3","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.9","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.9"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.37_1617873841169_0.9386942087879844","host":"s3://npm-registry-packages"}},"1.0.2-beta.38":{"name":"element-plus","version":"1.0.2-beta.38","license":"MIT","_id":"element-plus@1.0.2-beta.38","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"ada3b9de3d0c213b0de3df8bfff8b0e80cbc3776","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.38.tgz","fileCount":2079,"integrity":"sha512-HdQJiJ0gVXOOQFW9JL5Ko4mnecEtzhgu44e3ZmzGEda9rl9Nejs7vmaS1fI9RweCzRhpeN7IrR6s16ATMLTWzw==","signatures":[{"sig":"MEQCIErULGvv+9FnQELcvZEsBASsLj95bZV2HlgnKGY8ObcSAiBQzN1qa8cTXjRzbgIJWX+7C/2/c6kEHPu1uMzZ9ysN5g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8735139,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgb7wlCRA9TVsSAnZWagAAifcP+wd5wd57QiLnGBm/tIW0\njz8SKRsYI8rJn1nLNB4HMnQudE54n3lrD0oLG/lshIxjkR8KUVnQZaOD27lL\ngUtiOz3VxF0RTV0O7GzXXtRICc0EHx8Rt+TE0qFv2oNq7rCEmgGLs+qpcIZ9\ntHVnNwV9ObJHd9NSB8Y2vkGTpAajE2cFwixirlMiePsFxFiWHCIF2z0iHsgB\nym10nJNN0YZUCIIIhZLToXzjfI7BrGx5iyZp9oj3suiqwIHupqiJMwnWjcyF\nseaTvxEpw2uclbgXO6ZwZPwy47IYlgOOz16y1m5C96wDX3zUexHs7GZP6JVD\nqCBPukl8Rva2BLiONE5anxC6LbbpDZwLgEuYgUx5AN6HQpkfzeeJq6JdOZ+4\nYAqVY6F+DfobnChu8Fn3ZFM9+qQj4QV6HYGaltdFw5FUlt/J/WPGBs3s7Ga9\nbWlYEA4Lyrqnk+Zr6l8ccJffdP+FoR+uMStn3Sh6Emv8+oZ2T/xxklvNHU/b\nzGqC17SVszwe+loHwAuAkckxmZm/rDwFuRxRCAfp3jZ66YGYbCdLOEcXG2Mo\nr4HyBXV0V1HgEVrUYha6W8AbQgp5T8Y9pNFdt/xtZFFpwyVTOrdocRkInF8Z\n58hAoEGedeyICOCg8l6hUhDrzCzXrb/ZtL5EGWmwYTcKHCKPTxBLOf9IogkU\nKpY1\r\n=HI5q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"06731d8e70beafd7a1f9a87d01d80d841642ea31","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.11","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.22.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@types/lodash":"^4.14.161","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.9","jest":"^26.6.3","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.9","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.9"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.38_1617935396454_0.6218880131589593","host":"s3://npm-registry-packages"}},"1.0.2-beta.39":{"name":"element-plus","version":"1.0.2-beta.39","license":"MIT","_id":"element-plus@1.0.2-beta.39","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"0a60524060b84cc8c69243afa3db671fbab5c012","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.39.tgz","fileCount":2079,"integrity":"sha512-rGcBydB5zJhZL0VvPm5GJ2ZMk84cxKEYwh6uilCwyNVROtDIa1y+NqGBEEP57Y1eXS4GfHSxLLKiFAIBCIHL+g==","signatures":[{"sig":"MEUCIDgkrn0K3Sm5WLd/w4kc909Nxg1twMG6mrBT+FUmgBSmAiEAgK+wIy9rCJLHz85NM6Wqh+UcfB+fk8Z6owdCoC5knZ8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8737206,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgb/ABCRA9TVsSAnZWagAAMxcP/jn5zcrCjdEoXaDGaMLT\nxDNdZEvH/u4G3w4Aw0YvLD/8MvF6nMwpVKyYGlXzSrOUrVIY/eNs6SdgLSXF\n2l3YBU97U7d23WyyBR166Y+osM6QP8R2WQeiKArba8bPMUMhEp2SLiUTn46z\n1Dw/p2EiwjMv+AV4fnHtm1ncBiz9+YgZNNw9hPK+hvlFdg/ra96KwqtstCO+\nfkafBgkjnv6Kez87LVM4Snh2CEmlvAIoJvtznHEiWLWtR5oEKFdKz+jg8hiU\ny/k3vBQ9XOj35PBUoAvxkbc4gOQ1lMm5gkJqYN/xMDFZgsr4MaBdcc59tmE1\nc4vyfe/m6tSk++03imuNx/MX4iMelQfW+DGIyW1bZJOvpTDg4rJbRnQpAyI/\nTwEhkr01Ob0GLwv9S2d880jxRYnVT9FvWS/nYZS4Aq795gq5fzu19qXTakKQ\ni2iaSUDJ+XzsHZ+dbwBgdkO4Hz57ZWB+5/MwwacyztCxAeHzE3AJFQdyMl4a\nE6dtWNL21uAuZHrP/2QUA0+QEbgnAJjApZpLZHNvb0RoEMXxpoFqvDVi8zmL\nbd0QVgqRddUnUoWDBZZLSyfurKyczY6xkBjTbwV4h8NnAlPElUUlULROQNuJ\nIHiaWH8yeukQFGXSCC+6oWNCs+mlDbQM9YvtDHK874JJvSDKAtxZs1IRP7tB\nTt6P\r\n=Ga43\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"fa109bb5a728cbf8a3c042c3e65f179ef707dc4a","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.11","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.22.0","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@types/lodash":"^4.14.161","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.9","jest":"^26.6.3","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.9","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.9"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.39_1617948673204_0.8996904492904398","host":"s3://npm-registry-packages"}},"1.0.2-beta.40":{"name":"element-plus","version":"1.0.2-beta.40","license":"MIT","_id":"element-plus@1.0.2-beta.40","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"30fc9b161496ae587fab86235c80b728ea43d909","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.40.tgz","fileCount":2106,"integrity":"sha512-8S7JbBpJLUa3ggexuKuKeyrTo451gMDHa/BKJVFiHSyexcHPgnHQwHf2nIoZvY1w6FzmZPdBdZ3NoDLXu51SIw==","signatures":[{"sig":"MEUCIBLLUWT6lp9QCvzBRzATVQi/QXAPddZW4FMIfLkCFx5YAiEAiWDT2AWwdPkaYmAlFa0bjYsLy1TYuRqYh3hVM5xWxZI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9296148,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgdmhHCRA9TVsSAnZWagAA91gQAJSnIcSVqpFIx6vslT9v\nnigur+RWZ6U02RYcvqboMTYd6apWLidpwySnGo0e7Fr1pFex1vq7PN6YcOrl\nDyTWZNkzPecefWYcgWNoHOEk7RvYUhKmqOT/RNvxYsuxKlCsbZeqcUAMsACK\nSoyrrKBKcaYn688Zwrf+qQI7iMLbwU+sAPbaT3ONM6x4WMufwHjqLjA/XmJX\nCrqPEW2o7BppcpFQGfTfQtoIWE3OutZ/OcRH5C6VrerU1229T+3c4xQ1vaC6\nT/T5Hy7R6fLaXU3U4hbnow8M/m/f8mT5ruPFCtdykrTY240+Sk91z/gZUVon\nNg7BOE53u89WNYifPaZTKtvtlnmNwuBnbxwkNgwATo/eCYSzWN4J2DJ2dTZo\nrUMsiox80CVtUaTCNp4uarRBqDSUh7ZOdB16ERbEygfEocKZq+yhSuolC8mh\niLmmtceHnNQUQ4l3FYe8584YeneuXuscMQDyg74UDI2RWzUHtyt8S+b+uYMo\nShehy1ogIK5O+72Jt/Ob6xm7VdrIjziBWiVjU9G1XHapkZqX6PNiguIblD5k\nYsvA0medtftD8O2YbAU9FwUipnYEDhdyRA+faFudtCidLOYJmHyafTEhfBWo\nYdtIHFdV/i9PcLK3CsmBdx4YIhT6c0FgFtLcquMOFCNvj3RR/H275sCu5fmd\nN0a0\r\n=dpx4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"cc988f9ac1f099dc06af2226688001f429ea72f0","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.12","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.22.1","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@types/lodash":"^4.14.161","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.9","jest":"^26.6.3","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.9","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.9"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.40_1618372678543_0.9273571400865084","host":"s3://npm-registry-packages"}},"1.0.2-beta.41":{"name":"element-plus","version":"1.0.2-beta.41","license":"MIT","_id":"element-plus@1.0.2-beta.41","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"9c234b536b3401d042505c003e579bd65081f0f0","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.41.tgz","fileCount":2162,"integrity":"sha512-GikmQdajaKB5oLxfHxhKXGXtiNoaN1wYiLr9aRx+yxwLx3nPDfoBx60+nrZoN6BOCk2M0HjBVj9TtA214WLRYw==","signatures":[{"sig":"MEYCIQCrVrINhU8hne3O+ECIFXjyhQL4iUDOpOItU1WVopWFKQIhALxhxBX6uvVE51MYthbn0gwiKWvufZ7piIR0TTXDehjl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9619974,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJghphhCRA9TVsSAnZWagAAD3QP/3q+9R28Or90cfrRGbDh\nGl/ZnmSZWU+CaQbkIlmmO1TGOUq76S++StfNVkiyRN7Vpz3C//R4+JqwKJSb\n2jWgugAYIQzcyTiW6RkfZ/9Bo4biYnQJ306EldxRamVowllOLxdV+JLGow1L\nZKaTDO9efQg3IuSCSA4oFlQVwAhBzRJVtR3807wwiXzl3Ama7C3NIxnNa24d\nWis17GowwhizNi95mOLgST0sBkIIrDpTs2o2J58rpwONObTqDvMrJ4y1nreF\nZE1+WBLZoSEbFSnfsshMo7xe5ZtuHv0H2TER0xFJufK8inj6yk2R+CjcL5mW\nohwLxgDtqEeWp76OljH1nQIrzdMG9IASwWqJ4JtchmB107GQJVie4xU4MtmS\nOttNby3uoZ6E+7dGY1IRtY6N7tagaN7DZoMLeBV/5E40YN8LUbk0W+KwpQmU\n/8+MdaL+gvFRGmOOcUAze/RVs9S7hh5GWSvK376wAzhp2Ye4Pq6IwTz1snYM\n7kVbMAHE20m1JnySCgdEEqXHLtPcrGM6jVimFS+d62PjbiVQPSchLK8B7bUH\nP8JgEf5SL0/nd0Gtn3Vy13xN1bYAPkmMD4hAiTYGx1KC4aRbBFmV8+I6EnBg\nk5Xd0ucwjFfpZpY4pbiyahEEIxkXGmOC2zWAQy1KBeJm6//4ne77f+mkrFX0\nJkTy\r\n=lSmb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"fbb3feaea8abe1fb3dafd18c3006fb5549b30933","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.12","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.22.1","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@types/lodash":"^4.14.161","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.9","jest":"^26.6.3","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.9","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.9"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.41_1619433569315_0.04339341283733744","host":"s3://npm-registry-packages"}},"1.0.2-beta.42":{"name":"element-plus","version":"1.0.2-beta.42","license":"MIT","_id":"element-plus@1.0.2-beta.42","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"f2e4ca612e7757cd4b3bbb22b223540f37389ce9","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.42.tgz","fileCount":2162,"integrity":"sha512-6BS8hC2Bs3bggHQ7CdY+pQ+AJmZhQm3UGqA3Bh2mSNC+f2Fk5IELBvi/J1zRdz69LCCW5f9XEWf5B7OrOIfcKQ==","signatures":[{"sig":"MEQCICiE9GcQPa6ymeXg226sQnpTLoVqsBQMumy5UuGZ1njmAiA2uekTdaWg/Le0KdvSyR+V3mtxYKFNOsbyEoxruYLeWA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9630076,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgl1hpCRA9TVsSAnZWagAAbuYP/RtQ79hy/fQbkkMb2Fwx\nNRql1lnn4JIK6RvHAavjLVEDNB9NohdHN4SKkUey9n8Vu25hHgV+H2bwpeaJ\nm/C23cW6URWYxUJ9SC2wI+h86Gjw3tCwwLGVeDb9Rv0cq05Qc/5Eaw7XOYCS\nBT8b4dO2o/q84RnCV8/ZtbZiKheXEDpshu/M6XPUqJgrTjMyO5lBxvQOFn6J\n9ECs/VZG1ZvEPcL+x9dwVIV6d6/egRaD2LwLSnQpvA2NsiStRHs24GrRztgQ\nIrMN5+MEOFVAdVksarOPJFB6l5j/3OiV1IjMtP2fH0JN8X9ti8HkNilazVMj\np2TKTJdUUy37CGTZT1kBR95307Kyt6L7OXv26OTpVVaszFWjZFm4YQ50RUUy\niI5JwPiqPrShVO1gcifzlR5BNcDbQW1yDQOwv9u5Bt1BSX092x7MbAIhffpj\nnP1u3kCP/t+Hn803SEaSwJlPzjBU1HXlYs31Gp7x9qdTiwU9DghCTq91rAMJ\nOFdf6T2NhXuSkX75MJJzHhE6rlnfRM7eQ/y5XmtlRGmt8lBe5v7UWWJ4AUpu\nwwswIDLIfUtAHCpXKZKoPp4oejwrqpWox0ayBZ4OSNryv8SccKDd6dhdxLg0\nH1Rsy1wnU1nUuWSbPUp4rQq1avRRweCJHEeSnOIoL4U3eBlvvUQpUE4ZtnwR\n8qlG\r\n=0MYV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"09902a75beefa967e5c3715dce1b6cf2e4180b67","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.12","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.22.1","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@types/lodash":"^4.14.161","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.9","jest":"^26.6.3","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.9","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.9"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.42_1620531304341_0.3960785138216065","host":"s3://npm-registry-packages"}},"1.0.2-beta.43":{"name":"element-plus","version":"1.0.2-beta.43","license":"MIT","_id":"element-plus@1.0.2-beta.43","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"4dc5e9a9b96837ffc57347e47b87a144e1a1d3ca","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.43.tgz","fileCount":2162,"integrity":"sha512-QyiJ7ceeS90tYyi0OmUxG3spE3CVrycNT2vwRRnLElKOGJMZ3WL4i20gw8fuYQ56iU64cDuRkGld51BVmFijKQ==","signatures":[{"sig":"MEYCIQDHBEfrFtA0hB7N/rzgLNPegxWeMVHo+OwYcj1s3p44JgIhAMmp/lvY3BsoirEECrxoDn4WsdDpwT8DjzdNJ+gZrFcl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9633574,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgmU9rCRA9TVsSAnZWagAA5E4P/01YsDaespY499Qo8eXd\nVbdNvwCiieZX3IMXWaa13nljWGcUrwAjetBYOjAuFXk/IcsK8+tqJ/ORmx5Z\nQ9qPhZCn0YpCkySo5jah7h/UXboX5oCaXAdaaF6k8cg2IGmPx2rTWsRH5M/a\nDCHP3RYZtRuuJfBxnaUUZhIoArtGCh23x9L+FcXFHL1aZlCuROYNh62OOA5Z\n3l+hXg5RdkWvjskvsuNxaYN2oahLBUsifhm04tSBMixx5Scr8i6MtwDN40S5\nnXVeelRveq/iByGaWfyceFiiYt6ubsITiZa5qiNk0jDJTbvRGkYPmelJpoLm\nDQ2mwRAGr9E9C20XzWmkrJnCiM3TsMEed+H+HhPRBMCA7n6Avi/smhZi1rHx\nqFZyJZQb0UwE0W5xwrSFdYJONpH5ZohC3/zlNpfLan2jQXHPigH7OJsFMH1I\nq8TjIXicBgFgpbpX0VplqgX0VZNptn0uGGsD8VKwMr/hZ/5M5JdyeUm0jN2w\nH2aFk+YTOzwPzasleppEvB4dsvmM6uxLIIZE3g7sGcr6twfCO0Q/0qQ2UyDP\nvEffkxCCSdpR0JCbqAiIxlNjIZVTOM4MoGbZKtv7U5Oo72X9KvYzkxM4sgVj\nGOWAf2D8TGYZzKeuh1i4UuRjpHCBmzvx2RIgMLOpwcKg5Xaj2sAi7zzaY61i\n/FsM\r\n=vRjf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"05c17b9b5290134cae8c0319ab39b2bf9a50ebe4","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.12","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.22.1","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@types/lodash":"^4.14.161","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.9","jest":"^26.6.3","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.9","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.9"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.43_1620660075010_0.401053949313801","host":"s3://npm-registry-packages"}},"1.0.2-beta.44":{"name":"element-plus","version":"1.0.2-beta.44","license":"MIT","_id":"element-plus@1.0.2-beta.44","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"7aff122e6181088223027adb65a4a8321e1ef4e9","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.44.tgz","fileCount":2162,"integrity":"sha512-PmGfOnV/66LPGSsSbaesiTnmrcQ5PnoZLr2eKRv2/lJ06xUc0AiSBiktGrds0mETgC1O/mRHswXk/Se6aJtpKQ==","signatures":[{"sig":"MEUCIQCen+xg6PUBVrwweo8Pv3NVW/ddAiQVFuE16xFcMyZXowIgP2bR9/YDtpou4IMq79hm/GHcYkq8/A5TUtBxQXVC68c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9634575,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgmfkRCRA9TVsSAnZWagAAo8UP/33JUZ4/5H43RYafUPam\nyfcw0fI3woW4apnTrMSxvnt3TBnifpo17rukHSK9kpjwlLlZLvZrgYdTSQOK\n0xSkdgpnNJNAFhbpB51VBrm/i3CKrJ++WA2VTjxQBah0MkYxmGE0SXOpjefQ\n71P+QZsdP+/baIzWBAezvDoCSqqh1WTsUBfueSJ/A0HanIAr07uuHmbwsFu0\nN9Sq98HNrbqo0micS4EId9eUXCXGnnXy6LSefQNuZjwm/aW8qbIMi8J1+zgW\nD7+TrXCB8nWYAFvQ/iLKse9yv4JZz15jySxdpJjJhTs0AMSWu2c/6L5ageqM\nA3LrevP6qlLsU+aPzSgC19qnTh9bJHDApiyjr8Slcr/RVJD9fYP+SnFyAafn\nIHoD9+3DcwGTRqZ9LbQ06rSF7MIlnt09m9s/w0T1wn8S9t/9xY0O77zBofqJ\n163c3mmeDDE58l0C9bDz7ysaovhV2tL6uU+HJBGJt2+xnRsAuyF9zt3dbvPI\nkHEUfd/UxqnVlP1c29bnemu1g87uAgZRU00y61zR+danyGoLr5rGE6Vn3bJG\n5IDvK/4HAAC+jFRVwUYxIz0wD4dYINeTnPjECQQnDo6q/97a54l0gVgpU1OK\ntmw9DlaojvYkhNs/XljJ3fCx+gBBubGTRt7AG2tGVRn1STVfsu+SUWmz9w3B\n/AwN\r\n=eG80\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"962772ffe17b5bab9b465d816d39542390a348ac","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.12","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.22.1","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@types/lodash":"^4.14.161","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.9","jest":"^26.6.3","sass":"^1.26.10","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.9","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.9"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.44_1620703505023_0.5476624615455994","host":"s3://npm-registry-packages"}},"1.0.2-beta.45":{"name":"element-plus","version":"1.0.2-beta.45","license":"MIT","_id":"element-plus@1.0.2-beta.45","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"d7d84d284ead4f9de5aa7289b9a2af4b7f109a1e","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.45.tgz","fileCount":2169,"integrity":"sha512-F5U+fx3Lg7fvUPVSxrDQ02HKQbD9Az0fd7SYoqUOZhTuC9PPYlLezs7Pzpme0893cki18Dh7BS1mBcWcUg9ZWQ==","signatures":[{"sig":"MEYCIQCPn+OoNHWwM2OiWL6gXQzoJaHeuH2NfPG0kHQTkSmRsQIhAIej2COzVN1/qEtEVzyDjvh1gnIYAsenvkE+foieGMBN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10398244,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgsJS0CRA9TVsSAnZWagAAsI0QAIHQ3kFW1sCyTP/787A6\nO4TAavvFq8yZR6HEzZIiqvCexzkIgWzncs6jl/KagC/ZpO+bbp21aS4jlIA/\n6FyyjjcZG4aQDy6YaTduY1sW9pa2i1g67ahrHOz9utkmYY1YLYtvZobHWcG7\nipr8goGWuXLXIk6P5SOyuCUZzYd7g7d+IBS1Ljw7Wfiokv14aHjTmhqwU42S\ncWByqM4NlcvoNSq3DcmqmFtM1A4OTAOkcL0FwawaFzK3opVhWdz0zDXeO4TR\ntJbyAZIzYV9g16KWPk2bvYyj3p/KLq+7dHQO/jeTDx9jX1l3tzIid8WNR7Pr\nY2pO7qPJCBYiRYrynZ9Y5zGs4UV4Usv/qcPQosLsgGbTgyrRLWfHTKeT7JbY\ntv8bYnmhMaA9l+BPkZZ1ACDTjHOC+J2opUC9AlfWX/HAC2AMdTHdG01eycDO\nYUNzEGi/xL/LyLbQwPnmzzoPTPVTqSwtKwkLHe1M5+lhhUcxlPTZwPaupciN\npQ+OoLiF+F2oaCMW+yfEf2T0e3xvbBTgleAD2vyfzTHjuFnn6h1EPy6iUfmA\nip3e1/sgAfzKtLb6nRdgD0N0QViUukSgXBXx7Yg+2c+89H+8juB0og29xB7/\nRX0wOoEpKvgi4sXS8IElmXa949xP96Y+wWQBM7jHubxvf7skIP05d9Jgq5Dp\nDCB4\r\n=IxX6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"26980e1a94391bf8ad60c8b673b5f2af127e0a1c","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.12","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.22.1","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@types/lodash":"^4.14.161","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.9","jest":"^26.6.3","sass":"^1.34.0","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.9","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0-beta.11","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.9"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.45_1622185139877_0.7039443548700055","host":"s3://npm-registry-packages"}},"1.0.2-beta.46":{"name":"element-plus","version":"1.0.2-beta.46","license":"MIT","_id":"element-plus@1.0.2-beta.46","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"2423dcc56ce4285d7f2365ebd5622b8b3c7d053b","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.46.tgz","fileCount":2167,"integrity":"sha512-GevU3xNiIp+p9ZGnGRtFaJPnofsMXKwqV+cTXC266vUWw08Hbt1ronTsss/eJJ1OIHLoaFq4febv1MMTBSSjlQ==","signatures":[{"sig":"MEQCIHpv7ee6UF/689AC9VI7i14rKSAEKDwkN36vYoAmWXQnAiANr+GoJ2IbsFG+Qlg+kVPBcDxkl29TirTyVjgiFhQ3ew==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9840417,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJguH1WCRA9TVsSAnZWagAAVu0P/RM3PbQU8REjc7Srh1Yn\niKKZH3EUXvDCkvlWXlvltGdC7VuANQYC1ySUD6tGSwozeyY8+wJhNDNrU0/r\nfI/3nfHzz44xfYJLaNl7qQ5mX7IKEMPe2/HPDwMKkKl1J6ftrWfL+Spiw9jw\n2GO83nRTbs6aDUlp4g7cHz8kuCTNL6Av+GUWbtCH/8eLbo7DuQjF9g2LLlrT\nADP76uz8p68sBEtJTfIIzqDUFd1sot3fOTDaLXmwz3mrjsfxP80M2q3VkpQz\nK7KgiII+rIlzZVjWYed7AXVCGX5IIN0kSz49kk/NQ86dKPbG4ohU0yKl8Vjt\nTvgAnk9tVoLkUvFP9IAgrWCXkSKPBd1L/DVFqMckaO/hpMeOQmaV28CNDM59\nUHN6Ht7BnhStK4GfrNK2HZ3J9F8LOxHaHXXnDdh8bHJcbfdUZCO1mU9c1tHW\nUVO3QG/GjUoNoJKWNcqWfFl8fNthOBFSd22SaY7tHRJLlB7N4obRXO0EEKKS\nC8eyimBHGXPNK39apbLuod2gFhpZLqFTevQlbG/Wf1HAyGS52c5Lku+H6LdO\nx9bP49lyHDysV756i8Hx1zdn4PmjUHmtcfwEeWrW9GESidpicYmGDJX0j3O3\nn8UWtC1sOE5o+C7ICyHrMDSzVXuMWNAXRrs8UqiAjpPV3g6FS7RTYRxanpJJ\nN5yM\r\n=3+IF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"b60e4f3befc83ecc1c81876a7f8a2e126d974cdf","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.12","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.22.1","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@types/lodash":"^4.14.161","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"^3.0.9","jest":"^26.6.3","sass":"^1.34.0","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.0.9","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"^3.0.9"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.46_1622703446537_0.5892371081160299","host":"s3://npm-registry-packages"}},"1.0.2-beta.47":{"name":"element-plus","version":"1.0.2-beta.47","license":"MIT","_id":"element-plus@1.0.2-beta.47","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"3594d2cee3404e1f51ccfac8b301d7f2c1816806","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.47.tgz","fileCount":2220,"integrity":"sha512-nSWa3rwDvj4Xxs407A3fyx8t64WeZlV+XphWMENGbeyBO/ltkA6q7h2BjWUL/KEu70x1OSGRsEdvsR1a0UYJ2A==","signatures":[{"sig":"MEYCIQCZfIu1AE3JGCAArts+rQ68YAGxkButZwRMkuyBKXDrIQIhAKb9PwhHCxj45uoS3tV/Wx0LCQVq/v+qhOacYTRvAc1H","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10263838,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgw0MbCRA9TVsSAnZWagAAjbcP/0MuTjtHdhItIracrUy1\nIoma3W1F37BE3iYO2JSVTbVh1NvE4yoKVxJQlISVdHXnm1iM9xmLNE8xVLLo\n2KMaOHFEXVkx170TevKiZavKH3DrUOPaHqXMP3VQB3r+J0WrhlSvit3+QWnr\n7atUJqOn2qZ+aFRBsC7E7FRWRZBwaEJ81Zdb0Ox09XLVvezyJarFRQ39/uw0\nJ6Ptf7Tsfv0BBGPyb0PHE0V3GJAgHXUzcdrVTEt3rdj02pU4wyGeHF7Dm86A\nIPdDCkiLo32ehRem3wzdn+Z/c7A5uuSr1OjhF/VCl++WGdiwfZbjbQZhTQp2\nfyAYhyf+L8JxDqv8xXcVfablh7ne9LiD7BuHPwKLZcufNqmX+qrHc+MY8VrO\nKBh7K4szvbg4JdKb/8CSm7/GbTs6ytARHTJ6tF7Jf2wo3mos4CC69x2LQ6oA\nQjK6IN7vt1OmNnN3hZHMoilR25puvVMNDuVzaEumgpnd5KWA8De/yj9xgBrW\nPcyKzJ84IG9tNe+Og0DIVi2MpDaRWG6wjIbwUWqLTk1FrjjE8IISHTrdeVI5\nkGOnzee8tVBnh/Je/CDkCgdXpUHgqJm9n/VCXZgPnadPdgxG82hHUJIajfFU\nZJq2e6S4dUEVpiapNkjnMdLZg0l+CiW4cCfmVAkyAwHB0/hvDOjdcdNaFwYM\nHqu6\r\n=C2HR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"a8722d920868c0494a0b2b3991db5a796568307c","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.12","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.22.1","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@types/lodash":"^4.14.161","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"3.1.1","jest":"^26.6.3","sass":"^1.34.0","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.1"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.47_1623409435695_0.8625838636496477","host":"s3://npm-registry-packages"}},"1.0.2-beta.48":{"name":"element-plus","version":"1.0.2-beta.48","license":"MIT","_id":"element-plus@1.0.2-beta.48","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"8da99decd397b9975cd894d389096d2ed58c699e","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.48.tgz","fileCount":2220,"integrity":"sha512-BKLjkZqZCJIYxUgwEj4ojaU0iEXHf6LPma100rMQPXZ/AUEVx3yjuo3fmTV54CTsIG+V2W1VCEnD7jF2iw+qrQ==","signatures":[{"sig":"MEUCIEI63JAabo00VBN30rHjUuCw4sKAMnusqm0JTFDzE/14AiEA1vSJrLbS5pIuhp604Mb1UjCMxyyFiHJA+ChpAK2sWJ8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10263433,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgxAX4CRA9TVsSAnZWagAAtUAP/06xCsKTOfS+Uu7jNKEb\nQif5o9zuEmc0NbhnTiQPVv6zuSvdff/GJMWd8NmXb3M0NCBuCRC9K8S01/8v\nBDdfxhpEu7jiZP9gRD3xJCzcr21Q1mUDrRifAWXxudXWgF4wadMe24NhILyr\n8ZWKPCIjiyhSIE6R/wYdI0G2MQage8ulNbF5Pcc8lTqRIlYm3u8UI3PxTPet\nVOO0tSQt9Mu7JbXMe94C6BnlklZm7dbbzzSwusfnGFDaToTu38xIsylGPrbF\n9ljG6xMG/E1YMRXyJlPYqfBjintHNhoU7TJsbVMJ52PFbTH9HwPUwt9koH1y\n/dnVnZOpduDJXbnHlHBvnH+S2OjmAOSeNzrbT0nYTUCkyiEFOc/fOT3bOa5+\nWvN0CHS80s8NgfG9Q2P6K0A+ZynAXZ8Icql6Ez0CmZ6TtDtaCK0rMufi94cl\nIglXOETRoYR+RK/Yo6b2/PECTeRlA5m9oKJPEu0BIf3Ai+8woIL+zEbq8GtU\n/BjwJmA1U/Ap54LKulOpzSOCYbHxjjqXLAsiaCXSoEOWOWDfnktgfcUeNZnY\nPzZcDNCdlID1ErYvU3KYvE/9xsG5O/l1kH3hWpIVz7iKyPuFcOEZlcLVj8kO\no1QoTHIFA0xkoedJzwrpDCUNPUaw+rLRIjmSSuqOzyBEXDmF/o+BvO1avDAo\nD89w\r\n=yQPC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"6182fd3b96a972ddace3be86f18151ce74b97e2d","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.12","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.22.1","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@types/lodash":"^4.14.161","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"3.1.1","jest":"^26.6.3","sass":"^1.34.0","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","sinon":"^9.0.3","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.1"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.48_1623459319952_0.9034524715172261","host":"s3://npm-registry-packages"}},"1.0.2-beta.49":{"name":"element-plus","version":"1.0.2-beta.49","license":"MIT","_id":"element-plus@1.0.2-beta.49","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"7a16533be5c557db93c09175c60aa6d00fdcc51d","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.49.tgz","fileCount":2137,"integrity":"sha512-fIlM9S9DR+OqIj3Is1uMVY7exu7zlGzeaS5MUVmlCrl0RIHVxzsDMQ6GlZ0sfZBysOust8E273fF7MCEZK2wSA==","signatures":[{"sig":"MEUCIAXk+K5ZeiRpfBVG9Fih85BDmeID1p37R4Rf8Jqoe2d8AiEA5HkayABJtqE4IMy4UllTy8loaYGQXT0KX6zoLIf0AKI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8840257,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg0umtCRA9TVsSAnZWagAAjlEP/3e4J8trYNON/1ZW7NR7\nCdAhwYY59S+ew/KVHDUObtogHvMQ+nOdJGlUbRN/opz7bFSi/m1WIU6tkbtL\n0M2db2zjYg0xZA1apesq1jL96AXHPF7UVMDVTx4oQl4VNII2peHHtnEPtMMm\nCYpUZcxQQUBT/TVEmw9Y4DItzb7jtYRDjZPMQzaQYWWu2/j247ZKAOaVSLIZ\nDpEOWDvk4wu6m5vui7s0HmfIKwRn5fesMVlYN6t5GLJ/tIw5A67NPaFPhpmO\nG2l2UsDsa1k+xvoeLVTQqA4cGXYMEXdUMyVrkM7XcPQZavruKH747aBJKe0L\nUWO/WDGIu/bBXXH7JlGmuLPPZGmp3pejgY2vEQnJU5KiehWMz8huxDRcvLjP\n+dGWhWRnIRY+v4fKdGCX/AODQG8K6EpVsnzMnJF5M5D2MzrWX4opGbO9PXk4\noCWuTsCUPHAr79b+Q8xk5VM77wK58OFpE63e3wuiuieOnX2wdzUYu51YSpHS\ntYBix6v5riKK5OMbKkx+LBauLsqL737gUTpnBBbg9HX+HxIC7rTEa5h/tk9Y\nYps+6Xake668sval39nlKjViA0okntLbQZx4b8+hMfIOFuAAXJnzdzWcWeas\nxede8jk4s2GQG4ikUcglc2saQ4bNiUUf3Bxx4sd8+WaDMruJTaIw2M1wgfVg\nlHvc\r\n=Xot0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"d754934ebdca6bdfbb79b2d74737c289734857ce","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.12","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.22.1","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@types/lodash":"^4.14.161","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"3.1.1","jest":"^26.6.3","sass":"^1.34.0","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.1"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.49_1624435116558_0.6026177685005973","host":"s3://npm-registry-packages"}},"1.0.2-beta.50":{"name":"element-plus","version":"1.0.2-beta.50","license":"MIT","_id":"element-plus@1.0.2-beta.50","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"b2af01bdaf57da1645837a704f8e8ff4795ee79d","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.50.tgz","fileCount":2247,"integrity":"sha512-Y91l2MyNsyzet+/G82X6tAjhb+ECGkpv9QgUWT7pcAJAUZ8Z7evOx9rdkJ4Ej52Pig2kMmJ+go2aGw1hPnoJzA==","signatures":[{"sig":"MEYCIQCIDZOCt/uOmkzIN06d+o1LSvqEpUu0Ye39TM3OgwlyBgIhAKFZswrqYTSiCZo+/AD7RKzD260YB76Al/tqHE1KFyjm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10278023,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg0yVxCRA9TVsSAnZWagAA4ygP/A7InEtHgD69seL7AjG7\nt6by9+lL63dHv9TfgHuZisWADqXWWuvoFNZ0dBgTVh64QagjyTADGkvwz3+r\nWr+DulGv98xvpE3gAn300frO4/4fWxoMTVtCrpa723z/mieIdWhZnik3qbNT\nMKFMr/4sXT5S5MSHNVFUq1lXQDAG9mzMkS7ycrhAs9iASJdzWqhNfxYA4evk\nDauzuWfiTOh2z1B2pUSKB3DCdnabsi/wboMVDuTD7GX0S3YL27JpikeIyW7F\n/ZgHa1Wbtdqi1ickGYluHpDYAomx6d1DDstMlcc+fzTUZrj9EAxwVEBt2WWG\nAThWAVVEA4uyO7Vh7lnVysH6X8xtDE1Tc+QIYUDlPCexN0amslVEhN9/e4z6\ndXVp8v0zd+1WrI8GcXxYFwEKTQIBKt9MylsOOcHpM0Ab8DzblCsG+Zv6gq6u\nltsZcF3XqU2f627IZG9mdXuCQmexkjXYy9b7Rc2PeHkzZ/lYOpPl7rGWeJS+\nLss7mka7AaNqAS4ifDwJCw2NrZqzkEsjj43o9tljhkqgrU3Icj7o8E6kKuve\nySfuLlZjhIR9vJIVP9MEHoEqv6yO/CQ23pA5w2lm7okvKMox7SUfrWOSAa9o\nCBeg9A2Jlis+kNH0K7WGfja0Vy5l9AIKv4N14q5X4K6HF824220os8FL7m1R\nNikF\r\n=iUAu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"7d39b37f008b1af9beb40472098c3d83afabc9bf","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.12","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.22.1","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@types/lodash":"^4.14.161","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"3.1.1","jest":"^26.6.3","sass":"^1.34.0","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.1"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.50_1624450416617_0.08935698662527702","host":"s3://npm-registry-packages"}},"1.0.2-beta.51":{"name":"element-plus","version":"1.0.2-beta.51","license":"MIT","_id":"element-plus@1.0.2-beta.51","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"5f27a7fcfef313fd1344f6ef2433ff2fe9335cc8","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.51.tgz","fileCount":2223,"integrity":"sha512-DLBXIt3gRleo769GV6rHHPUhDubWcwWZdvZIwH0CYrpNQW0Jqs8lXFvG+u0dgr+lnul6GZU31ZDoe3Ffq6NLBg==","signatures":[{"sig":"MEQCICigm/V5OFyxx+ErG6E5Z8w6362vt/blJGdc9e5DW7ZdAiAkGHLJuqMvatdbM3DrAeKW3S/ZUyZtn/DBUu9J/1dGBA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10266717,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg0zXoCRA9TVsSAnZWagAA22UQAKFbMG5TEPyWZx+Yv8ZW\naye4RZBnKA3cf7CTEHNLid5Ht43dMSk6AZYR+If6oMxjvy+8kYbliauqZ3tI\naiwQMhd5vuvw2Qm3T9b/gQAJhJIgSq/2Gu4bMaZIDTbk581DMgEkznv68RBT\nD/kzouC4PnTYRAbcXdWX/6PRK9erwXiMU600C8sKVYZZjGf64jWX2ruDnXUl\nzpVFnGJDRTP+wP/p8eafvUxGJblYQPBUQYCFT5LaE463HZV89iccuaFN3Tv3\nlhU8kY6/lFjb0KSVeCjwXcLxTpoLf1QbJ254bM5VkHl4O3AoKneR6Y1OAMB9\ne0kmKhqg1rPPwiHdPn+D511PBH5cX2XHD9CmYl34HhWawkU4JUfNZMkGw+uJ\n7MUcsEEvUbsqhl3U9l4aXpLp7+FgnDm5g01gMAD+eC9/PDBPi9simF+4WZ/v\nryPSY80exY4nQCmm/wL7UTlnpYe3bDGxU1cUzQWsIGv58s3FGA/yG+tYO9rK\nNnnHdn6iZYVr3BHE9fTrrN2tonr5G0BJWgHL+HaF3XJyR1Hdvct6iZCf5DBb\nbskVq6OMthK3nZYgF+eki5adalH6QZLHtOb9NRAyBOeupIQYZajYuc5yLhSH\ncAjcAvCzkpLSkrXbzogXgb41merX75v06nyUXkqc0PFYLJPutSgEKSQt3+hs\nEteG\r\n=hP9M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"e9ea4b4ee2e87ba4337e742329d53caa6df608e7","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.12","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.22.1","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@types/lodash":"^4.14.161","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"3.1.1","jest":"^26.6.3","sass":"^1.34.0","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.1"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.51_1624454631478_0.6582902159879076","host":"s3://npm-registry-packages"}},"1.0.2-beta.52":{"name":"element-plus","version":"1.0.2-beta.52","license":"MIT","_id":"element-plus@1.0.2-beta.52","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"c7ed94d498e390658478aa2438bc35247325b2d0","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.52.tgz","fileCount":2223,"integrity":"sha512-oAuJHwXyvM4dsuOz7HSDPIBVPqRJ1KEzFzGqYdqbBjQ/aw79uCJxvS9Q4q9/XrPMfPire09+bPTypiIaHkNBhA==","signatures":[{"sig":"MEUCIFKNKRn09Lg5Hv1EE9Gezodq5jxo5h9dcg9CmGPCxZmKAiEA34ednBMZM53q5EXVrpo3szL8T5P7pyr9pTs6/SNdd90=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10267952,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg1AysCRA9TVsSAnZWagAAqRcP/2yui2/JRsuhogwIAW8b\n5r5W0AN3hqRR0Tt/V1KfTIYMwJUg5T/othN7aYJG2+v4p5YPHUiaidRQi2x8\nV61XdcgFxE8Wv0LT8P+2An29AJzhmcYsjVynCpqnhwgGUGwy6gxg8UOfhJhc\nlkl5oUyIUA0LtKfcN/ObFfBRD7TUeUepHZwgnIaIGYW5xD+03AWhuQ6uyNjV\np1WyZ9JkXXMAYvK5Czz89DwdhTeZi3JACz1cBwj1yfYTyg+iTHk7GKT1IVge\nwa7icXs/j49bNfEGebfkzl40pAULVQfUYCdhkxXKm2VzDW64hUWo7PSFZCr2\nolTJHTh3n3ZAitNwe7ckBTo/VllNy8soFQrM+P5oZ1Amt4sAwcDWc5TvFUfk\ncIZ0VST+qI9V1MZaGZM0IvDf5kve41ari8KSq5KIzMfocA+r7maDFIM7S6ha\ntBtiSPTWa3T0UCvgakeLqbWljP9PPyitcz2aSnkue6GJuWxNrztgrdO3n8XT\nJsXXCJe+tPQkAWYKq3dHlN2r/dzP/yM5USYYU/7/IMynuwNSZn9NwJSDRO0k\nep2/PoQxiwcCdRENLVYNdlx72GtecVb9zJXKwjU3x0JU4GEDl5ax92+gXf86\nyD3MergLTJODA6nIn9kHILZxnrMeVvt0Nn/DKpbVtM8X8JzU70t3o8V/J2l9\nqz1O\r\n=60By\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"cd11befc9e1691d894f1fa347bda9e66e0ce40ed","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.12","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.22.1","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@types/lodash":"^4.14.161","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"3.1.1","jest":"^26.6.3","sass":"^1.34.0","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.1"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.52_1624509612233_0.9189855438005468","host":"s3://npm-registry-packages"}},"1.0.2-beta.53":{"name":"element-plus","version":"1.0.2-beta.53","license":"MIT","_id":"element-plus@1.0.2-beta.53","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"52208eccce487f452ffc5de8722cb718d6e02953","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.53.tgz","fileCount":2223,"integrity":"sha512-PhhOBy1BWSVGWpCcu8fkmjcXvnAlc5dvith9vbNo1hPjm1cqf3AZbbt955VUTyFKWOLUOV9oD76HrNEG5ZTlxg==","signatures":[{"sig":"MEUCIBNrrKoN9+UQAiEdh/9KAmIpBJfBxxyu6npoFA/HTShMAiEAu055YhEgXIwDGQV6CN8i9c7c/FSOL+q086uVufXhIR8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10279413,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg1aVmCRA9TVsSAnZWagAALoIP/j5yenr8dfhJ7AXmSWHR\noGgI4t1Gm+BVCFNokqLgD1OUo799LNnx0cvau3PiH2gGmojM49XO5+ugFKG4\nXvDWMGNWK/Y/McFhOysluHohuxTQpzncg2IcEgcKQpqoYTjN5pmZhnXRrX3i\nHlKiAl2XJcfkyW+d2u4q4+mnguUSTnTj14kCXk2f98k97TcwWLM2XnfkRXM1\nFi+C3Qyf3F4eAbRShk+BZMhzqqHM726SpnNon7LhihngVq8fW8tgqFUwaZRF\nwmmEuEtI/wFx2Q8pnf7lBLYoe5/DQ6+StULPp59MMuqc4pHpNpAlVMUioeyR\nGIRr6W0dbGnFM+SudVP7dPuU1MM1NT8Uo6ZWcDdi3bLs5QorI0tT8Yk6Jibf\nnSit+6IUrPzDboNliUSK79/+90fcUrI+pfg//sIpY1yA1V4AlnbAuU4t/zDt\nSn09z890DZ7kDiPtLsWkYjojfoJfmf6xiYlcASHrMgnXwUSvjgfXPUE/iKCc\nv2XWY/VQMwYD1i2Mdi51qBjSmY49jWnpu6oSWV+wQy/miT8fEa1y/EjguUi+\noEY3xVpeuLlIfxC61cHd+afMddz/ufCE4/UUllnrhSZJy5fysik1Qf2kBmbd\nU2raI0/4PSB1g1gZ409IYuZSQxqQ1L7iaPhV/pdmrd5E3VcSL0hEYuDPWboE\nqV0u\r\n=KFJx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"c6ccdbec8fdf7b3869977ee2940c8f9d172bd95b","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.12","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.22.1","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@types/lodash":"^4.14.161","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"3.1.1","jest":"^26.6.3","sass":"^1.34.0","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.1"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.53_1624614245812_0.4273879607321436","host":"s3://npm-registry-packages"}},"1.0.2-beta.54":{"name":"element-plus","version":"1.0.2-beta.54","license":"MIT","_id":"element-plus@1.0.2-beta.54","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"70eda3fc0ef4c28a1cdc6bffec8f9c34ef83cc16","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.54.tgz","fileCount":2229,"integrity":"sha512-XXgZMnVt2ECtLyxJLVMq+faTxcYKNy9ZTaQ4cgbITgR/iGF5iXPHHjn1J1DWNLIKJ0XQRo8atAM1fyOpJsyJzw==","signatures":[{"sig":"MEYCIQDt4Dn90YCssjqbiPNJSC3+eJ6aUzTzg8ZulnD5/Af82QIhAOABC8AlSlchHUME2jOdPMdO1KgTKkSMWoCILM0M99AM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10282896,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg3rTdCRA9TVsSAnZWagAA+WoQAJxVeqYvH1DAz8VXUKa+\ni+wPOizrQzxI94sgZM0G+HMrBN7+oLKdu4jbw/+ycW+V6zqHYXbvwQNXeMTx\nTsW1LOU5GxDppLOoZz3PLwjB7hzYGsPQrAVmLmaJgUVkNTtRrGutX2laA8GX\narz2+NCVdeCB1V80XHbXrz/GdnZwtR3M0KNKR4eNkLPS0914eKIDHZ4lJbRr\nve7TOXntd71ffGZQLYeJlAtaVOXHqIATvXUq7aXJcfU8N4TIjreoggPjKjp2\noLQg9T1VsdYlE/vBx1ASa64xoDHQdPcHcl20JY4o1u+38kvnO2MzfLiEmA57\nBuMznTPruQj9D9rWciXCQnfBFQPnugTzYqNCROD+JoYbe+bgYfT/plEGgPMb\nxCErAFQ0Zc7w/eJCLwnD4p+jxNtAUwh0bH81MV0oPpCz17bTxbn9p64OYdCL\nPTMpdX2K/GQXiASrmaOCC0On2qqD5pTWnE2JWMja8Mdg1wMzwoQ751TsHjVX\n65IawnmE7yljXE36i63q07WDtqLvvOeYIgPX/oKOYL0Kj/iFx9iTGzm4Y9oW\nTK12PSu8l0bBLXn2rF7YDZpWRPIHgfsZbxtt2b5FIpchV6WHO0/z56C9cSP8\nes3kKxtXZAU9M07BF0T9YiQOHpvGV0FmPvBluFjvPPxOaPZDyU1BVf/7ve3C\n2d5H\r\n=Stfj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"854403e61ae6a6d0a4c8f0bd6866d8af235c1fa5","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","build:indices":"node build/build-indices.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.12","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.22.1","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@types/lodash":"^4.14.161","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"3.1.1","jest":"^26.6.3","sass":"^1.34.0","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.x"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.54_1625208028943_0.7810300225742426","host":"s3://npm-registry-packages"}},"1.0.2-beta.55":{"name":"element-plus","version":"1.0.2-beta.55","license":"MIT","_id":"element-plus@1.0.2-beta.55","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"d95886649560c4edf21568e6d4a822e4c74fcdd0","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.55.tgz","fileCount":2260,"integrity":"sha512-I9EYxOA5H9KQ58SpFE0yejGPoAd3ui12wRLLtoS2bHdF9mrep5c6v+2cJwyc9abXGBf2RzZ8tqAp/OCCfdzjlQ==","signatures":[{"sig":"MEQCIDKPO3gS+Iag3YzqMa1mGUvLoOCX1T7kby09ooOfoU8mAiAqyr68P/XoeDoB8ZGsm7eVPCjf4a9mw6C5TS6Yfc4H1w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10362802,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg6BiYCRA9TVsSAnZWagAA96MP/0CQ/l3senKJBQ8L5Z5q\njtuqG+6QP6r+dd0HiUPbcLeCU9HceLfsl8PMs4X4bdGuROKOPP2fbECv+acw\nwzHtYs1iqc6vQlavZz9w4eRWgTc2T/+YZ1dGU3Mgs81EjMWBSHxIHoicZoGh\nQSuaKOkpxTzHH7YeXjEprMuXFanQF8xZDt9JW373LhD6Mw3sOpTmYhuMwFsH\nNw+9rM0aV0r+IQW6Rb4oFObL5rWikbyZRTpJ4F9GI0B4Eg1owtflun0ailXy\nFZVbrqe7s5vlJjrNxCSW5oMZ0ZbVI4fnIiMmQCQrPaPH79hqhUethH4jWYLd\nAKPyK6DG/qPphQYbk6GsMbxF3MJR69mQ4HVbCD4JPCNKEJQ4f0/8vOkjF+Dy\nzW+eCUsrPnX8vS4imzW1DIzG7Grsln1AZPH/qw+CP2q4ztLfQ55fpOO2fve2\n2kev1p/vF7d7qNimK1qA28pl2LNaSW7vht7+ainG/eMLoC1iK11DnT1J72Rp\n0qUliUa2jYZaQSO/QDBhFL9HDldq0M2+EUNMQrzT6j+7JK2jgT9dzjPow/IW\naGuXCX8YODaROysSRnuUFlc2KeBxoyjPZh2CkBei+J0rDTa3bsSaabM/thj4\nVWEbx35sHGIW+ZC/duCSRdDf0++/YeQ1uKkt1nANZUfNjMbo4Gye5XqYgi3d\npNMo\r\n=GeGY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"lib/index.esm.js","gitHead":"10d83ea631e1f891972033475e6312585f25b170","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es","build:type":"node build/gen-type.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","build:indices":"node build/build-indices.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.12","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"12.22.1","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@types/lodash":"^4.14.161","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.1.0","vue":"3.1.1","jest":"^26.6.3","sass":"^1.35.1","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","webpack":"^4.44.1","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.x"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.55_1625823383241_0.3383559573931918","host":"s3://npm-registry-packages"}},"1.0.2-beta.56":{"name":"element-plus","version":"1.0.2-beta.56","license":"MIT","_id":"element-plus@1.0.2-beta.56","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"ef7e000bc137638e059136b2c956f214ca493be9","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.56.tgz","fileCount":1349,"integrity":"sha512-ZMpONNWeDEkV3eJF09sAXreAnkO9ygIz1hs4PUMNTXvHme2dP6/h7T6xz6uHiXg8wm10DJ0XjonN65ENg1ZpEw==","signatures":[{"sig":"MEUCIHdE6MizLbzXcjjk0Kpi7ppBRPThhvjGOPZvFkKU/38xAiEAkef4+TKsut0XKjhC/TtuwpiuLQLJH4B/Nuqau+qz3wg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7988817,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg+pO6CRA9TVsSAnZWagAA7j8P/0byECwpKbcU1WxPIGzV\nUbJiORp6hKA9hF+agfFFawSmVsBl7RG+saP38iTtEXpoq2ACJQsbcR5waZqb\nCyTz6KpUexA+3fB6DiiiVH1oFEYn5W0kTYHSBb72uWeQkLYhKof6Gh05btbo\nO+rrEaWBFB0f4GFcrlLTASY+c6KdkgmB5EiCNuq0z7M7Xb1spUrtfpGo+oGj\nCdAZLexgd1iCabATaZP1SaTPkjaHwwOiduiHHNofXWYWI0Q/Sgp2UZfU3Z9m\ndfAl9i32qBxuPmd5bbpjga8IkgDrUaEobckyXQ4k0xs/xuE600CL3l8JMJvU\nrmKKEqvE+zh/sbWXr/MDIDkyZMqNjl00ci/TKpNCU53zPaAni2CHwnKFFVvv\nOPpZ5hqzbzvwiJJbDA4UrdS4YEzYJRnZlkg8d8dBOUz6E81q013FvBaW+KeR\n5WNUSHfY7eu1Mh8PvkoYhxxP0sMEhPkrVDZGJ1IYiDVDqPZO1/ar2NTUtWVC\nfipuQq7pVML2ehlMTcFGNTq4JlinQAsyVqgVp1qlMsrRpGUsZsiFUCFlsE+X\nwkthrX6L25nXFH9e6rpRPU8aAmGIzHYTbANgojB9e/IlKDepcPjy9/Gt/MPW\nTZSZz1ruzLF5Rq7tWeMi6aIudAKcGYQSl0OhWxaLaDPbGbrEx0axoEVhludm\n2LQh\r\n=O4j+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"es/index.js","gitHead":"8952a1732d92888cac1c7e5f632ec59e7e79e5b6","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","format":"yarn format:scss","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es && rimraf dist","build:type":"node build/gen-dts.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","format:scss":"prettier --write **/*.scss","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","build:indices":"node build/build-indices.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.13","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{scss}":"prettier --write","*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"14.17.3","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.4.1","vue":"3.1.1","jest":"^26.6.3","sass":"^1.35.1","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","webpack":"^4.44.1","ts-morph":"^11.0.3","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","klaw-sync":"^6.0.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.x"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.56_1627034554456_0.14296341978468963","host":"s3://npm-registry-packages"}},"1.0.2-beta.57":{"name":"element-plus","version":"1.0.2-beta.57","license":"MIT","_id":"element-plus@1.0.2-beta.57","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"b25a61ef363ddc0c656e51549632864989745480","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.57.tgz","fileCount":1349,"integrity":"sha512-LWeEkG+2AzO930x14yB9fmvDGg155V4f9hQgVmJaDER3YPrh1Cka0TDI9jWzA03sQ64GrtHBuePzNJLadGp+vw==","signatures":[{"sig":"MEYCIQCj4jyMvukzhkR6LYJYRZe/BQz1/ZKTDjEUA89EWVUC7AIhAP4sEREwN4fpHs9uncTZEBBVJWhbrTTMN7lH4ltSFFYi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7988307,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg+t3aCRA9TVsSAnZWagAArEsP/jIYBa7KbIG0jhCg3kfO\nnP9tNFFJA71sNV3GTTVAAed4D3jADHlPVQRtQ+EVEl1xkVhnzMBp/oQ+VhxQ\njwWfSGa30uizDB8/RWGM3Ndimmu7wHP/VxWY12EUP4rb7pSWenV4iJMPSABx\nXU56+TLa00GgmALCXKARqpKmwsEfp1m16vY0kKc8aTlzjTwfh7pqO4AKbU+2\navfbiWdJu3+4CVkqPfKZAa/rGobVbyCLLrz8WaoGOnjp4QDg+wtCGgeNa9OQ\nfZVWAFAWXdhAtJ0Yv8Yf1Q4yCn8V1zzjU0xD2TU1W75hN99G0BHVvh8aDqCG\nwtOz4snKsbo6Di5hy5R2FUlFNdvkhtYO/2Ltg4f2vE1rmvC4NUOIOYaXGJ0V\noOkPKi635YitROuBnAfPTPs5yXAmS1rkACUoPlopCglEjkTi1n7mkH1NnRca\nQHV92VpEXxAdrVE2l+zMhMdwDvrqjRnRl3UX+wyZVWpVpCiAAKElvZQn+z0V\n/etQKIHOvOY5gYE9VL6Sa0Fu3X5alDCSuoDo8kiy6nGDh2rj5ASOeffhwhmG\n7xMsV5LGOmhjP9oFI0tMQgIGFSnakZtVMJszE4cwAEF8cAB4kKLKsnL2489m\nBSbX92eNOMxJWfN2iv0X6aLxNuH8ASY0P0Lhlz3yRZwBypk/A8aUJ4ymqVKs\nsEdB\r\n=N2Yn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"es/index.js","gitHead":"2bba6d570f46251fff729365450a03f99abbd636","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","format":"yarn format:scss","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es && rimraf dist","build:type":"node build/gen-dts.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","format:scss":"prettier --write **/*.scss","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","build:indices":"node build/build-indices.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.13","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{scss}":"prettier --write","*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"14.17.3","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.4.1","vue":"3.1.1","jest":"^26.6.3","sass":"^1.35.1","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","webpack":"^4.44.1","ts-morph":"^11.0.3","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","klaw-sync":"^6.0.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.x"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.57_1627053529998_0.49981240516860437","host":"s3://npm-registry-packages"}},"1.0.2-beta.58":{"name":"element-plus","version":"1.0.2-beta.58","license":"MIT","_id":"element-plus@1.0.2-beta.58","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"be56a98b5b8dfb08cf164bc61e5ab8194517212f","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.58.tgz","fileCount":1349,"integrity":"sha512-56AxrfDmF8AMfHm3PuBvrDU2SXfArZSBi/rIqrLngxV3kTd5mqtOLklFZgVOD3oDs3BiNhnQMEQuc2qyI+F+TQ==","signatures":[{"sig":"MEYCIQC4fyfFsgN5e6jVMygG4Pey/6kLpGYd4w5GjZXGEhfeKgIhAPhg2YPwM/XWiNwVXXjTcgR4kC6oSEnubbtPwoy1xiI4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8000885,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg+5X4CRA9TVsSAnZWagAAS+QP/02nVPA8b2oKHlABNM6T\ndEt9CSdhWvgims0sbcDfjTHlh/HTkOzgq3cV26c7iQGRAOnhtIX1yum7anb9\njvKYSBTSocU6cIpyLSd9Yx/NJR3fLH/B6O8MVX7GnuVBC3vIf48X+fJ2NCym\nXw9yAwHpXhup1F8vATrgkk4BC0GVNtz8RAEDuysz3l4evyNE9lg6+/QhwS13\nV5zqMcPAPkuzlH29PSZT2sYzNuWBYk8U9SLSj04jWuL8D3gL3jPR3ZBBTBAG\nBpJv4Nv+x6smZxHl9hxG61gpOmgKeWP1srYlRzf9TaU4ZLB8VrF9uYq6Sndk\nvoCPi5EZuaIS8JSy4dAxYtXCYE5+ZgF5SlJXL6ZQZcFaN+t7O/PctPE4WGd7\nbB67O5MFzjPV5sKYXHFWyin7mxFI5U5SNDNEaTql7PT57UUbqHJ5jmV3C/22\n+X57YkgWi+cdKJMhE+UTHgIl2TIATq34vvgOvduBntpRsn90f6ku6bUL4UOd\nJhMf/ANtfEvRrYpTnzFeLkUlGlgoVvbsN28x+1+V60H2iNLODNQza3Ii2qF7\n3Ec0rMKCIjEQJhGbl/VcrxsUInYc8kKqpiIwsCwjCfOwHAyR2gx4heH23Fvl\ne7GsmHvLcLEX2KNRptX8sJzJGzk2m9mXYzNLlCfJUh0z1vgQUsaGmzskNL82\nSnkm\r\n=kBsU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"es/index.js","gitHead":"d6fecf9b324c4c7ba4b7fd9da7babde57c60aa3d","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","format":"yarn format:scss","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es && rimraf dist","build:type":"node build/gen-dts.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","format:scss":"prettier --write **/*.scss","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","build:indices":"node build/build-indices.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.13","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{scss}":"prettier --write","*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"14.17.3","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.4.1","vue":"3.1.1","jest":"^26.6.3","sass":"^1.35.1","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","webpack":"^4.44.1","ts-morph":"^11.0.3","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","klaw-sync":"^6.0.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.x"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.58_1627100664017_0.4731972890945191","host":"s3://npm-registry-packages"}},"1.0.2-beta.59":{"name":"element-plus","version":"1.0.2-beta.59","license":"MIT","_id":"element-plus@1.0.2-beta.59","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"e1075a84d51c23314316d440c7ef3eafcaff888e","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.59.tgz","fileCount":1363,"integrity":"sha512-anhpptY0YHRpWxgglmB7nkh56wCranIrpBT8lK/dNchuNCxPP77eBZFHoKpA3oRPV03jqiNyo2a14CmPtL0yqQ==","signatures":[{"sig":"MEUCIEZje3Igh95JfDnAbacsoBu/+ZEjjShvCB0IgPsutQ6UAiEA0vFk779IT09DuXDyyOIeUorLQb8YIn905JIJOJ6yWnY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8122602,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg/ZspCRA9TVsSAnZWagAAjCkP+gJ2UMhKaKMMP2FSbTov\nvpvWWF6m8rTWSQWr8qyNZBxkMbJzk/r5GoT00LYLAK326vR2TaKfSs94FSkj\n6u9oPTnBRJdZZinwR+V5x6KOk34+aJMtY83EyTh0Jj98WnWuRuTSon8UO+3L\nYduuJRcvuT6yH/ULXlbV3L5ToqigcKD3twHfhDMsfAfjNaPsUyCVRlh1FGbv\nPPuCGzMgJ1iH+WxLuO3DYPW7q7XirQI84gxDW+GFkF8UlMlCLj6+V56wKstI\nxFtir20WwZp8U+y7dNlGUJGywKsyhBaQyH2/r2X+oQad2ocF6/sR1vNl5Z3R\npKug66CSkx7Fg/peUiHd3ZgOmO7iHDZNwTXUxnxmNk8xEz2tcdugNESktWg8\nODBMUFkrR4J1OkRHCVsFLGutSkk8FkK7YUKvd7L1s2dQk9iQMXqSh0PMoaLT\nsstRMTFECLBAj5fFvtf5Jg7Gf2DXiyo8z1JG7nt9kMr6vSL7T2pR2NmDQD3m\no+C7LpqOZYawb/A/Lf4z7mNPLdsb2/dUlrRUIYau8Xwc34mc2Bdy0tjOVS2L\nijW3lfa4AKJFHszFGHKyg0FKjeXvw12zf4Bx1RX3V0h6Mlj33sjdxue77pyg\n/NIsScxE8uNuyTBLrJwnA4JJObPxbxqYZHKV6j7o1iIv1RfLgrKX2WNytIdh\n6+ro\r\n=uxiJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"es/index.js","gitHead":"8f20b35785cc598e3d244e1a02fd523c584bd4db","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","format":"yarn format:scss","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es && rimraf dist","build:type":"node build/gen-dts.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","format:scss":"prettier --write **/*.scss","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","build:indices":"node build/build-indices.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.13","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{scss}":"prettier --write","*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"14.17.3","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.4.1","vue":"3.1.1","jest":"^26.6.3","sass":"^1.35.1","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","webpack":"^4.44.1","ts-morph":"^11.0.3","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","klaw-sync":"^6.0.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.x"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.59_1627233065009_0.7553387655101322","host":"s3://npm-registry-packages"}},"1.0.2-beta.60":{"name":"element-plus","version":"1.0.2-beta.60","license":"MIT","_id":"element-plus@1.0.2-beta.60","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"276c17e9cbfcd4ed409276a9310076f21a84fe16","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.60.tgz","fileCount":1363,"integrity":"sha512-B1gc5BXgaXu3R9xytks0OAiOL4d0R/SorObN2TNoqi81ir/LZ0plWjRhxC3sc/E9TsftSbiJjEukUYzM3V79GA==","signatures":[{"sig":"MEUCICsQKu2Y8+dSDJ1q1qlEVOpwwTtA2aB3ajgZqEnntFFnAiEAkfE0c/rpC7g88Efu0vuCgCEn+UsFvgM5SJQu5HFe4Lo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8128508,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg/icRCRA9TVsSAnZWagAAtuYP/AlxWzS1uDdelm0Bz1xF\nMeAGzYw2dQ5AEUR8jRXxj0blgx990B8DAe2OlhlEpJ5vyVakJApRJVfHB8Br\n5dAgR7J5Ff9dltxizfKXi8HD3eunFa3Vnj/3jAHwGyPzwqNprNzY/OSOWOV9\nNRajj97WsILUENWWyo+pFPvc06dA/wlhUJMSo9ksm/X5GAEsrjwPxsq0OAjR\naNOtH0B24XSLfXYxQIgLy1NN7+/BHEwumVnEYgJDdaDmJGxWVtxse9NZrCSf\nQpOrZ+jgtu9gDsee9+vr9wX3L7+P7l/jNCmMudSq/A6stF65eoDxw8/a7B3Z\nPbZwfYecxDXPv5pvz91C4WasmWOvGXqy09xHz7MDmSnncGLn0RvqM6Xg7ior\nH8B/m8DTwoWPn4KJKFbmhsN007dw4DeKq0vGNhEmOvSCicgq6EVAptpAw8y0\nkYu7dvDQqbvz5QB5B6KxpbCP5B6Rd/n1EEOFwSPtCcAHqOtvzXoTNHS3KaVT\nDZ0xFKanE3zhtWM7wcXdqLIJYxuwyRQi7xILcm5CmkU2yenTYK7R4dRaDDea\nVuhbfaqICVIvxPzpLajYzITX1IUwfVWkc21AKguDpb0LhHU9V2v3KDK/eXZ+\nqE0ZrdKVR4IzWmp13nQ/1KjcNY41LxY5GfJ9HytsGEiyi5ccdahukpGjIByM\no7jb\r\n=b571\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"es/index.js","gitHead":"07106da33ac2f56f1f4b5fdf48195dc4750c44b8","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","format":"yarn format:scss","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es && rimraf dist","build:type":"node build/gen-dts.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","format:scss":"prettier --write **/*.scss","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","build:indices":"node build/build-indices.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.13","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{scss}":"prettier --write","*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"14.17.3","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.4.1","vue":"3.1.1","jest":"^26.6.3","sass":"^1.35.1","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","webpack":"^4.44.1","ts-morph":"^11.0.3","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","klaw-sync":"^6.0.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.x"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.60_1627268881636_0.7253614149227119","host":"s3://npm-registry-packages"}},"1.0.2-beta.61":{"name":"element-plus","version":"1.0.2-beta.61","license":"MIT","_id":"element-plus@1.0.2-beta.61","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"dd25da8dbc01d9b6347e3a051795007b71e67f61","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.61.tgz","fileCount":1365,"integrity":"sha512-WO+IYnzBvcsglXtRbZiv3RyQ0rODK5iqnqbaWLgFRPTIau24vnvI3PMY6YbzRSyc1UnWLaDMK3aAXpboHFzpfQ==","signatures":[{"sig":"MEQCICyTS1wPR+oxl/4Mep32jsN4WVpsPk7jr0GyiGnIUqRMAiBvg9EelCvOyaevj2Jkq2J/9WPxnlxNyAr9ReAjxJBxVA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8128508,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg/jgVCRA9TVsSAnZWagAAIDwP/jx8LnTqcix9nZ8NQ8+T\n1UtZJozsNvqFR/X4WD6GsSReEqpEONFxL7WU2OJUI6eoui9NMr2umgbZ+WXL\nn/nzO4DrXAaCquub6fbR+iREjNNkjzdGrvIP80+xqTufWLnRWHJEGhmZR+Cg\nJ38yq5NlMUCdPYnuLhu3zcmTu6/QkT9+R6IMAxkTWYsaajpAdKjyMxGCdzvG\nVVBsvsSjx77If5rs3DIuEA7zhQs+H5XtTYTGNYpf0Xr6Bx3WqvVJmMN1X4//\nsWgVV8sTjpXuPATfW82GnQbOtbnvd2cau8LESQZlRRE71/FeYDExfbKjbFxt\n2qLRIp+hEwCf1V+j87ALS/0f0hMpuEBd+4f6BuLEPbBT26N+7KVaOGcdeKpj\nCjihOlqdXAbsZENEqLgZZK/pDOr9Yp7pGHp66oJmGoXLBbT1qquLYfG59j0d\nflzWAhDfdwGSfk0becy7pCKjWUyLRWJGWEHIZn6e2kvNDwyFXKJSxG0Ph6D2\nyqi/VCEkbBLrgu6eqT1REYjj7R0cKMhfQm8DqQoA2BDDK/N0DVLv0Eo5HXu0\nRp0d/NvxL1SRmEinykyzNbBItzVkbcmmQBVUGFT2i4T7sJJZ+s6NygBzfPdX\nGARazH68e5LzswdvGAVYvtorjZguqYmHBdrHjyS7u7HsNbKkSwMg/W9W61t9\npiUT\r\n=QCkM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"es/index.js","gitHead":"a846c08a562d137e7ca9eec61321b9aed07c9b53","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","format":"yarn format:scss","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es && rimraf dist","build:type":"node build/gen-dts.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","format:scss":"prettier --write **/*.scss","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","build:indices":"node build/build-indices.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.13","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{scss}":"prettier --write","*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"14.17.3","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.4.1","vue":"3.1.1","jest":"^26.6.3","sass":"^1.35.1","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","webpack":"^4.44.1","ts-morph":"^11.0.3","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","klaw-sync":"^6.0.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.x"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.61_1627273237444_0.2770704184684818","host":"s3://npm-registry-packages"}},"1.0.2-beta.62":{"name":"element-plus","version":"1.0.2-beta.62","license":"MIT","_id":"element-plus@1.0.2-beta.62","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"7c95a091c33de797a7a85d284fbc2f10dd8308ba","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.62.tgz","fileCount":2273,"integrity":"sha512-v4rMbL6p4z8PgsoYt8KtYf8Buw1exMeyVNpioouxH28dt/Cb9xVYbIUcJYWuKG+6IDkS+55RIsaNtUTLK7PZHg==","signatures":[{"sig":"MEQCIHqJQu/NxOv6Ti/cdNh4qCyQkP5j6KVGlywQ70WUst8jAiAYFyNJeq0Mtu4UqUi9R8bfmDfVW+PdPn4kGULnc1cGFg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10241962,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg/kF9CRA9TVsSAnZWagAAeJ4P/jxY+WY/KCwdUg/oezbT\n5/m08MZDKezzhuf1rcnL7j7IcNbwVjQYX/51uyIdV+NCYesZBxdTwkCNl8Xl\nm989dtLA5FucofAUrDZTUBPHUbFGAfz92t59Q6w3iVahfn/UAvNc5ysIIQmG\n5JHZ6wkIjMw12F/u0hRUBmQchXAwvEYX1hIYfU/c/c63OlvxRBAf6g75hdR4\nsqXZQM3L6CYB8uLNEMzXWL/9iUKhtt7r+GkIpvIsj6YjzkUF5B8a32I+/kC/\nWsNB/DBjMolmRw6vIfGUGNEBFaNWAbdyV7rQAdI7LrIGL1kEeEpHV7V9uBf3\n6IMA3lKWklFTxH5W/IWJJRBgV6/6WjsSeVxNE2JoelFwV6coQCz5m35UrsaW\nEvWLfVPB9DEN4ABLnDEpjCNZtYMbZ6Tt77wQxdIolE6z6VouQ7vJHqwqPVgR\n0/3159rfFX3u9bOhRF+YE/Mr7Lw51TWGJ0YIfS5pWwfIqqroRg5Z7NwCuH7n\nYD4YCycL6BkmYWjtezslWkcXTH4AEFaMdWAo/Cord7mnbmLU8wdU+EsT4IO5\nvCj5or/3hOUMyYhSK2C+6tcu6OD2aej/a9IAYzDnymgce6X9zhSNqporIAq2\nzEWpp5lM6QqN4eF8/0tyWHbhHQqHejrw38FSv9zhjneKO12iZ3sg9YCKqyU2\nK2zl\r\n=spAB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"es/index.js","gitHead":"426bbf2afe4fff40827f4fe2385cdd3c57c29155","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","format":"yarn format:scss","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es && rimraf dist","build:type":"node build/gen-dts.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","format:scss":"prettier --write **/*.scss","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","build:indices":"node build/build-indices.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.13","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{scss}":"prettier --write","*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"14.17.3","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.4.1","vue":"3.1.1","jest":"^26.6.3","sass":"^1.35.1","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","webpack":"^4.44.1","ts-morph":"^11.0.3","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","klaw-sync":"^6.0.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.x"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.62_1627275645558_0.8801825950239712","host":"s3://npm-registry-packages"}},"1.0.2-beta.63":{"name":"element-plus","version":"1.0.2-beta.63","license":"MIT","_id":"element-plus@1.0.2-beta.63","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"f2faf1456d8b597e1f9b88daaea2fb412d2fe675","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.63.tgz","fileCount":2274,"integrity":"sha512-z47wZwLxtxWNl6o/E5te+AnrQZw6pPLrz8lVCFdnMcdseconldiCmfDxacUtVzMFAvC5G89fC9/PYHt28Vz2BA==","signatures":[{"sig":"MEUCIGTybFC/l2ELGLG03LgHlhEdTkVXpG+ySQlht8bEgqsZAiEA0CJlSBfv5asxLUBPdq65K8ZddfmPznsrbW+MU7A+t0M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10264643,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg/5yeCRA9TVsSAnZWagAAdZoP/13fm8N8WuwEeqbprwNw\nHvOtjf+uI0960FAhFe3xhdMTk0Bf+w7C2xa/mCsArI51HDkRbRGbWuVTIcTk\nJO/Q97cck411OEnCEhw43qt/GGmPgcqNZLA9pGkppq25T93bGj3dH0QVe24w\nFjOfTIdquvDwatFlszAcAxrwSm1CAoQJKk+Pr21qCW7fn+phFlDyxQp8uWtb\nMJFg21JaZZW8cKPzlJKyoU+kkzAa26c6cEgjCNTeqA1Lwk6KDPWksKBOfuok\n4cXOYtvqPOsunZB/M+FZyrtxG46JGEVKJOPO5Aa29Pl4BwRUXAVe4VW3UYKP\nY8namNURmKZ8jJrGUk8ofaa/8E6wkDlS3JLTJLeIaVJOYbGIgcsr+u1cz4x4\n2AeXL0U7K3biUJQSdbW8bXzABC/Pu9xtzYLVxu8fakv7peIM/Sa5BPfgLveG\nNu1jkmiNKQV/yJcZ1SEx5K4uA+3kJ/OOc3GA0GdQP/G4fqlHbq/35CFtlFR0\nH3mJTcKOo0XoTD5bU01kZPi0fnT/X4iGmOwHSsxQivt/dQAFiyNelMUg1FvC\n2sx9Iaj0WqEqNuZJi3zr/qd8HNK3OpNVLidf9OwtCQ6LnRQKJ7MxL0sW/5wi\nZhfK07R9OXEQYvJevh2TOLzAKSxtD8SkKMk39NWmxMmkBrTS3/C9YzgUxLFp\niaVU\r\n=saR4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"es/index.js","gitHead":"90c7c05f116bcb064deeee9b26cc30d5e5ef7461","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","format":"yarn format:scss","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es && rimraf dist","build:type":"node build/gen-dts.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","format:scss":"prettier --write **/*.scss","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","build:indices":"node build/build-indices.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.13","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{scss}":"prettier --write","*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"14.17.3","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.4.1","vue":"3.1.1","jest":"^26.6.3","sass":"^1.35.1","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","webpack":"^4.44.1","ts-morph":"^11.0.3","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","klaw-sync":"^6.0.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.x"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.63_1627364510665_0.7327468797227135","host":"s3://npm-registry-packages"}},"1.0.2-beta.64":{"name":"element-plus","version":"1.0.2-beta.64","license":"MIT","_id":"element-plus@1.0.2-beta.64","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"2ffcc000ebe1fe35113666ed642a1d6d17a5ad20","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.64.tgz","fileCount":2277,"integrity":"sha512-ZH6bhHgyWwVRFgAW9UbC0MfwzItMMpguEZopw1RL4OdWSPlxFwjkKAXFqWSLjYxxJ/mJKiTGIrgzFtWXfeb2Lg==","signatures":[{"sig":"MEUCIBSoSjDSBLN3m+mM6eSCpVnye+TPKrUC7TLyIJCQTADmAiEAoLVl3lQsZrLFEZVB+U5iQsn2F7xLfgLopCkcO7NFreQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10192505,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhAOB9CRA9TVsSAnZWagAA+S8P/RhPHK31l3LRoEZ5q4bK\nwn/y40TIr/h4I+tMKPwmmQEDEjKXKHWWKWqgQtSl0Iqhd7B3Nbf8OT6l9r8Q\naPK/YrcQi/V2tgN1JMIiDUDQb32kE+S3wsTIO0YibhPHIeBD9vxPXkl33cFT\nJGg3F+nHXSi/XdmTO0lS6VSkMyrsXK1BYp3YLvAA9qlzbBe5luQ9Y/P8EKdv\n2Kz/5v/KhWkzEHA6HuJ/wccSr/dcav2F8pd1adDy6uYmMYFlX9X2Roh1nbiM\nsIhwTTCCkFTVlVPxF0vGCd283r/F0cKFJf/tL7oogDBPT1FHAx/fmGQZLsg5\naTMRrz+hTlOfyyFDGQElcJ5Ktt6Pl/WWwFbMGjIuibQu3vnt00x978hbt0NY\ngMzQk/uPQbFTIdElIcjGgHQj1GdsNMrj5d/YdchU5Y6edhpZEXUpryKbAa5I\nVCC9oTUB500XqKH2a55aKG7N8e74gOBo2AwPA/Y/LWm7UEO4k+VZQ4mF/dRi\npXdgPLToerIapZw4aPRtsuJefHPbjQFkJRB1yIZCRvDBpjbXlibDPxSMEIl9\n/DNjfj1SeqDdody6Hnl4Bu+GRCFcyFV0s+ZKjkhu4LksISFLOM0k7gFmEvRp\n/+npDXW6VDAd1bElPaLM8/nKSXihtNIf3L4ZH/kTb2iCcuV/bf7NN+xS2i/o\nN5uD\r\n=p05c\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"es/index.js","gitHead":"0047885b7ff3bbc6ed503247f02fdce6285eb143","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","format":"yarn format:scss","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es && rimraf dist","build:type":"node build/gen-dts.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","format:scss":"prettier --write **/*.scss","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","build:indices":"node build/build-indices.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.13","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{scss}":"prettier --write","*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"14.17.3","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.4.1","vue":"3.1.1","jest":"^26.6.3","sass":"^1.35.1","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","webpack":"^4.44.1","ts-morph":"^11.0.3","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","klaw-sync":"^6.0.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.x"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.64_1627447421695_0.8276195247358065","host":"s3://npm-registry-packages"}},"1.0.2-beta.65":{"name":"element-plus","version":"1.0.2-beta.65","license":"MIT","_id":"element-plus@1.0.2-beta.65","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"e1ff997fe395dd2e31a16517970058bc4d45fb3c","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.65.tgz","fileCount":2277,"integrity":"sha512-qQLubUvseYlz5xIatDh4M1wd9mQ3ceEjE/cDtzJ4Y8/63fip96H/JCl39za7wEXiwhqglnu3Ag48MmMbqwgBdw==","signatures":[{"sig":"MEUCIHQbJjNfzYK87FYbb/CQqpJil/uJSazikO4enwuLzMv7AiEA1UnXqBDSmG+qh2wXpvlcmBlAGBC8jUbnc98YKfNwl1Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10203313,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhAU+ECRA9TVsSAnZWagAAWlcP/jhuFT2aelDA0e+qRL6A\n7TIhU1cwTJ1VIuqxqBKXSs0d1CZcgkKvAzmpLLgSgVsa8mCucJGCnQeoFhMb\nLnB+nqkGCYXLR9i/FdU9f55+VgTRRKnC4R8uZ0bAg7kFwsf5/CTf7ZG3gSGe\nm9JqSEnc6gZU7mpqxDxJ/SWV3V27EITSQXjqiXMR5D+kc6N15f38WTOowKQU\nNSrAGZCM0MEcxuCBuGcDVDMbopu+ccqK8W/gn0pMHpCAA4jCqi4YR+e6HXpb\nPy1MKXJCVkf2qvsuWCYUOCrLfyj360fJbXJg8KzGcccrLq0u6LpuoueeXnwW\nwsyeyTVnwQ7JjJRKmc1Fow2jO7ctv0AXaU+m74R5oUnrT2dZcu4t33Ak6rbt\nb6HeEzNTcVpPeL6AM311RipW2fRl4CsLag1mP7RnqmH3Lr7WQX2IH30nJw8E\nXzrXB5kGkEm01IPIvu9QR+lniY+scXXpKoduWx6ClWkGBdk3m7c4OT7T98/u\nZ+O+UMTmXcOwLnyhB+fHn3rp3XlmnZeTcxMKtNXa24o0e8qPOdYVo+XM+7qR\nvoovZ3sSzsoGGYtisWd7182Ae3+oH2Q55zP3/pMQabSoD+m+hohZ9hnuE+36\nVHOj2tTiSDQbGg8O0MhBYnmh1UPvZMFfPMKgH6spQTdG0swIG+umHnCuZWJe\nsH+C\r\n=5WIH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"es/index.js","gitHead":"8ccbf7b82e588a8dfc9c71ab1c1151705a955267","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","format":"yarn format:scss","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es && rimraf dist","build:type":"node build/gen-dts.js","fast-build":"sh ./scripts/build.sh","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","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","format:scss":"prettier --write **/*.scss","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","build:indices":"node build/build-indices.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.13","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{scss}":"prettier --write","*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"14.17.3","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.4.1","vue":"3.1.1","jest":"^26.6.3","sass":"^1.35.1","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","cp-cli":"^2.0.0","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","webpack":"^4.44.1","ts-morph":"^11.0.3","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","klaw-sync":"^6.0.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"^10.0.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.x"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.65_1627475844276_0.7522561824459855","host":"s3://npm-registry-packages"}},"1.0.2-beta.66":{"name":"element-plus","version":"1.0.2-beta.66","license":"MIT","_id":"element-plus@1.0.2-beta.66","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"a3ca2915881946cde3fbed98eac143b48178987f","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.66.tgz","fileCount":2384,"integrity":"sha512-+pcaNjjO2b8lGnLZqyYJCveUpf1D1y1qugCWJr5JdriRcf6Y1CZNRGqB5GsdMdOMstRXtJBXiP+NfWY6mMDWdQ==","signatures":[{"sig":"MEQCIDiXitbzqE5wgQNvS4RQXclA63HIPi8KMVzf2XopYPR0AiBUsJXrwkdZsLIv5BhuOwFygHWfjrrqZ2ElanpzDIM0Vg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12106559,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhCUdwCRA9TVsSAnZWagAA648P/RHsSGWVX1soAXRPkit4\nOumFdNEmjwohwgciT6jj8XkzJwB4J3mFFhhVBDPcQS4ejbyj8V8UKg2/OKVH\nocrUDeDMKoUmPNHGVa5es76vcUTG175zN4oqKy/CMP6CspD+JszR/zlXfDxR\nWDkLGsvIbNMa863BtkFBvjPdGeu1U10DEiY8fWj+Neamal6HBMDQ/2pl7T2x\nLZbj5/mtRzkvJM/wdWLuT0x6NfVytmGIiqoKvn+90YeF3I3Oy9MW8a4QUFfj\nkuzECnu5vNzYxmMaKdOEL3q2fIHWBsGAslI5quqcrvarppCtIE5X4kwJBJsm\n7jeZO4jMTYnfYTWGsd2dUYGskVND9+1iraQcINlECGZGLHk37L4kzkF9IDUo\n/z9auo4Urfi9R24OTx18ZvXeVTcm1jMj8WUpVEv3KsPiy8gbYdsM5yNocmIR\ngLqiSu4rGBfTl7EIyvoO28JFcYeyi4P0l8FOQJ+fyK3e4wd3fa4T+OzbGV8c\ndbyK/lUbUGXUQ55ewk8r0xkzOKmlVZyiaNSOD8qTLYTDaCvDYqzZz6jJScdF\nUpepof7eefWrQFPSl1RipPC/KspGn2y9hV5zwMSXzWq0XsDaMepU46o4jEa4\nGlzS/ht3XlEfpxqdz85H27VrjjLZi48woUlNKvrgWtWg/jCRF2w+25dgJstF\nfOFZ\r\n=Y5Z8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"es/index.js","gitHead":"eef1ab0522debe158f7923bf5bbc0a2052906325","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","format":"yarn format:scss","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es && rimraf dist","build:type":"node build/gen-dts.js","fast-build":"sh ./scripts/build.sh","build:theme":"cd packages/theme-chalk && yarn clean && yarn build","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","format:scss":"prettier --write **/*.scss","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","build:indices":"node build/build-indices.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.13","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{scss}":"prettier --write","*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"14.17.3","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.4.1","vue":"3.1.1","jest":"^26.6.3","sass":"^1.36.0","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","ts-node":"^10.1.0","webpack":"^4.44.1","ts-morph":"^11.0.3","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","klaw-sync":"^6.0.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"10.1.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","progress-bar-webpack-plugin":"^2.1.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.x"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.66_1627998064000_0.30250235069252174","host":"s3://npm-registry-packages"}},"1.0.2-beta.67":{"name":"element-plus","version":"1.0.2-beta.67","license":"MIT","_id":"element-plus@1.0.2-beta.67","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"6e8efd51c17c6557716c1b2da12b249812b7893c","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.67.tgz","fileCount":2384,"integrity":"sha512-EYzKIedcAagoxUuhrMNtTPIHMFmhlEHrIkuzcpO2XlBM9ORkfewMzFddmrknBSaJgZwVxiCccrpvePgdoFlMvQ==","signatures":[{"sig":"MEQCIGbrfJXvBwPaYj4AKgaDhR3m2ggFsHFHSAf2Y4Emp3ztAiBzoN1FSS/0mNoJ0vcojub482/0DUhUY3NEsDsruqtS4A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12302113,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhCg8UCRA9TVsSAnZWagAAfRsP/1Zk0X7XHJ3H5CNZHXDg\nmrBcSrZ3dinba/cjGFuoHF2ha98S9NeYSP7v2ycO8vB8jH1r7DqKI89dmG9j\nDuoZ1PP9Fz2LGEUKTO+ZY292qV8gSKMV6F8pAJW6XywEZiZaVPzY8RYQoaZ7\n0aTwq35znCNaBxCZWbxjG2LAjKI8CLqw/SBEItvlQxrMqP1bBtpsWSJW8RkE\nb3/AAcHnHs1jzq4DH0CXXZz1UwSye1lealLANuIwoQKFKzpNm93LEdAdwKe6\nhANjWaopdlap3cuLuTb55410csOo8PoqZCkiFPKuS7/7YsWlQe7/KQM0AXXA\nHhcxKThvAb/JOIlr7MwNDPNJ8CJV0HFPjrD/pr96Jwer/itVY/eVNab0ENfW\nE+mPfS2/2VOIrpS0vV+n202NIUQuybW1OzqN7qFW/1daas6BSl6XFVWmVUo3\netSJHO3jh81I7DrermbBo3x+LZH6n7EJxfTLIrOe6K3om7D3eMjt6+CUNxJj\nVzy4wiIj21CuaFwvHh9cLLGajVPC8c+vJysuEJSUvSK0/PntDyE8yUkaDwQZ\nivWFH3bV2CPxgGlH8BHwSWY4WA2uwiz8brbz4xknADiojW4Um6gAL2fT/oMJ\n4X9r1GdFe3y7sHC6miRo18n7j5n2vci4RN2h9KqduiOMPUNHDvw1OEI4MNoJ\naOz4\r\n=9wXv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"es/index.js","gitHead":"d067c9e88119864df3139113ead362fe9da18b3d","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","format":"yarn format:scss","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es && rimraf dist","build:type":"node build/gen-dts.js","fast-build":"sh ./scripts/build.sh","build:theme":"cd packages/theme-chalk && yarn clean && yarn build","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","format:scss":"prettier --write **/*.scss","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","build:indices":"node build/build-indices.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.14","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{scss}":"prettier --write","*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"14.17.4","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.4.1","vue":"3.1.1","jest":"^26.6.3","sass":"^1.36.0","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","ts-node":"^10.1.0","webpack":"^4.44.1","ts-morph":"^11.0.3","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","klaw-sync":"^6.0.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"10.1.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","progress-bar-webpack-plugin":"^2.1.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.x"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.67_1628049171902_0.3089168305774477","host":"s3://npm-registry-packages"}},"1.0.2-beta.68":{"name":"element-plus","version":"1.0.2-beta.68","license":"MIT","_id":"element-plus@1.0.2-beta.68","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"99070654847bbe27c7cb920a61b86936aa569e5d","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.68.tgz","fileCount":2226,"integrity":"sha512-w5K1DrUHYZi739D8TyiWuxNlIQs3NUMmt908YYr7dXeLwxOWxoHk4My1SRK8YluwmPua8kXAdi0yRJ8Pma3DRA==","signatures":[{"sig":"MEQCIDyBAGtZdCgqsnD5e5KFSNnXAgb7sz9NL9k8Jdsb8hBuAiAZ7GQPCJve5nIUVWxjHhSqEUQ/o4nUkmv6/y8a3CTIeA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9468317,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhCnKhCRA9TVsSAnZWagAALQgP/28Q4c2RGT3UJIC6ZfDq\naSxkMsZ6xZB+DQyCa601ZidjKFvKL32OEJRNe9jJMH1ycoweC1n1q6cNAGvu\nBrHlsrhwi5Ff7ELJ1PNbIsByOW5fkIpCXAstrJ0CubDxpNLdPMT3mCXhIEIl\nudIRXwRBKta/d81cAti2mYNfhBjE2X1+sjFqOvwgcAn3xrQulU2RMcHA7s9K\nYoTZdlze6BGtR5E8v9/rhDoAhL9itejAEkUt3aK+q87wPoUvpL1mE8IVakag\noBpGuM4lTKGc3JIPhrLovtnjoUKLM1XKGR3YAxXJYzxvnwnrOakGzQ6KkFt3\nDju9JNiL7XassEJZX8CHjxI21vcQ29vjIZx0uwFbBcbcLR9FdTuT7zX8iKP2\nOQgqcNDn5Ljw+R+lZ9o6YFhwCSZWj7U6nBHhW6p8614Rt+Ain03vCPrwusQB\nnQblRyNnXrNrPkNGpXn+9vW8/80Vhcs7Drvzo8GWauW78N0fCpMo9Irbgy6o\nJ6yeLehE3PrqFiezIAPQnZwlzAVeR/HBeKv+gGojcpJNLe3aU5CYOaQY98k8\nOaguXvozHCnRMYCsgeGLIaICSGvlk9ZY1MEN9ZT718byv3cLcrtHtPHp55pB\n39lH1TmIaJisOsQSZuZzVuIuDuGfkcXT2GT23Q0NiJAEJ7mRgAW4VJpNi7ix\nAv6e\r\n=MrBm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"es/index.js","gitHead":"d459ad083fd0d201129683c166b38b058df91043","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","format":"yarn format:scss","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es && rimraf dist","build:type":"node build/gen-dts.js","fast-build":"sh ./scripts/build.sh","build:theme":"cd packages/theme-chalk && yarn clean && yarn build","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","format:scss":"prettier --write **/*.scss","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","build:indices":"node build/build-indices.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.14","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{scss}":"prettier --write","*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"14.17.4","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.4.1","vue":"3.1.1","jest":"^26.6.3","sass":"^1.36.0","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","ts-node":"^10.1.0","webpack":"^4.44.1","ts-morph":"^11.0.3","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","klaw-sync":"^6.0.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"10.1.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","progress-bar-webpack-plugin":"^2.1.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.x"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.68_1628074657569_0.8949683964557062","host":"s3://npm-registry-packages"}},"1.0.2-beta.69":{"name":"element-plus","version":"1.0.2-beta.69","license":"MIT","_id":"element-plus@1.0.2-beta.69","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"afd426005e4d5774db60a726ac5c9e3b68ce5808","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.69.tgz","fileCount":2402,"integrity":"sha512-LXHbwI4V3Sdr6VvG22IcMZXmChiNsTmrJ93kDTkGNMto6CXDm2cd6+6d3qAJF5Gq+pS0+5YbQ9kr2imE4HHtgg==","signatures":[{"sig":"MEYCIQCjjBpCkGFTtOWMU5FkNt9Xs46xjelN776hmWepcB8ElAIhAOjipJmPfclH2n4j55N8qitOUzLIuTFGR2zo3DYtGPWS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12319576,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhCnz7CRA9TVsSAnZWagAAX+QP/jweN0uxzvfoXoB6rXr+\n6ATLUSg//PI9bdzHzXME4JnDstsHHE+HgWwPvazk1ceF3tp7Sw4ZYfqGCIJD\n/bZkS6NWGXnw2iPE/uNpUER8OtuWwBYlU/0yaKxJHD3ZjindQStlJuDxmqDe\nkamPNUqAlRpyKEnZh8hTEkNGIzWINIC7HsEN9hMJMh8XgRYb+jXczjqC0y3P\nENlQuT+DrB/2ygVXTcY/6e1iYxUXZKsiqK97w1Qg2IDfkyMxodsDRAZ6waTI\ncSGbTzC6a9c7BgRpe6hTqKZXpHax2OVI1ZbqAYkknmdf1ylMNg53vqHIS1za\n4ZJjP4iU2I2FRHC6PEaDLCdYFtI0x91J55j/vJSpQO/KKem56aK7ifWBSpSA\nxzdIIuyW3dzVXs84FL9SrRxooca8KYeKX7moZpL86/igmw2K1dvKN3QwtJIL\nbAiJTq5yJWBWnygqtKH3wI7As7D7h5W5wSuJxAYgdH3cbbgievKFa6EOJHJv\nBRXGHdeA9a506oAi6PGpEVn/mE8RCcbdh6cgNaGXGFQw1PrFj454B/AKV6AK\nNyZIP4WZ9tW0W1uFz3pr3LxcCFaJ4kg2cogv2eLMdl9lDjhDYRinUWpjVHkH\nxdnPqkLbFCblzvo3NsqzfO6fYgmwwTtyW79wjB0c37tPU3JRj3SHMoUeGjcs\nZ3OF\r\n=YZwl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"es/index.js","gitHead":"b05b9c1433f11d0e8c05519da90aa72ba02752f9","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","format":"yarn format:scss","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es && rimraf dist","build:type":"node build/gen-dts.js","fast-build":"sh ./scripts/build.sh","build:theme":"cd packages/theme-chalk && yarn clean && yarn build","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","format:scss":"prettier --write **/*.scss","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","build:indices":"node build/build-indices.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.14","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{scss}":"prettier --write","*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"14.17.4","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.4.1","vue":"3.1.1","jest":"^26.6.3","sass":"^1.36.0","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","ts-node":"^10.1.0","webpack":"^4.44.1","ts-morph":"^11.0.3","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","klaw-sync":"^6.0.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"10.1.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","progress-bar-webpack-plugin":"^2.1.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.x"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.69_1628077307113_0.9239278232823556","host":"s3://npm-registry-packages"}},"1.0.2-beta.70":{"name":"element-plus","version":"1.0.2-beta.70","license":"MIT","_id":"element-plus@1.0.2-beta.70","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"13058f4e78c5e73b19a915404d71076a13a2616e","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.70.tgz","fileCount":2402,"integrity":"sha512-q9nqxELedLTFMCff5M5CsFbjWQYa6FvcLr1p7QZI64stZ7oEx1EcFnLEeP7dTg0g6iZf1fnaL5df1fVKWY0Dcg==","signatures":[{"sig":"MEYCIQD9AQSJz/B4c0crT2Ynd0tDjdel8qUqRNIEcox4q/kkPQIhAI6TbaKaJ0095gcdCmleItZ0vLXsIgJ4x8EvQWWvvSYO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12327684,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhC/lCCRA9TVsSAnZWagAAyAIP/0UFjOyD2olbgy5+3WzC\ns3D0mnhI7jVDbnqZp5JkWPOg77IgDLB/tfSr6i1dtGJDhr2uTiGEtvG1WwIt\nwXZDloDc2iKY2yT+jExkFwpGigOyGn33M/u+V2Wy+yr4cXD8O7bZuxb4pKnm\nPi2/WnTS4lywOav+teMsjmfv4MmKDf5xzXzumi1XtGPo8TJlfF+v6GD2xnz0\nluXky61HGLsvWZeG+/yjVytY6XyOHJhluKFGDG5MoG9flIxYkeCFxR8zlE1V\n+Fj7DedSce0CU/izfXH973kelbdPupQyAkSaMCeUnTpkN9slMnz8sVMOjcZZ\n08sQhi4gDK/cJsTFyMsTyQiaVCaexKQZ5lYfJ5flH1ZH/mHMzSx2xZbWePJ5\nlOJ2EmMGGjQjIa2cNo/M0xHPmit4H6YfmBYbp0k28O70d2VaYc8fzxJvXvSy\n18addC0Cw0l9KrvoJpEQPe1IKvj2Dp52B2o+VTd6M2IjiskTLbKCx2woUQNS\nkpWUyQM9RftNMtRaQTnfG+np+OSBiqsJdCbFL11+BCTGTzKkYBLYgF/2XZLq\nGXHdl/OBwInP0YAWzWKAMuMc9UEpo+BeFu+cGxdRWIzCAt8rJ4smdK5tCdLB\nj+MjjnSvW1uN75K5k2/fEL+T0llW0pg+wGDYcyNQ0RXPyjuzGkkdP5/J67+i\n5/LF\r\n=yjel\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"es/index.js","gitHead":"2c8a02f54ffaaa5ca364a78b17f76ded247ac992","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","format":"yarn format:scss","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es && rimraf dist","build:type":"node build/gen-dts.js","fast-build":"sh ./scripts/build.sh","build:theme":"cd packages/theme-chalk && yarn clean && yarn build","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","format:scss":"prettier --write **/*.scss","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","build:indices":"node build/build-indices.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.14","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{scss}":"prettier --write","*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"14.17.4","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.4.1","vue":"3.1.1","jest":"^26.6.3","sass":"^1.36.0","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","ts-node":"^10.1.0","webpack":"^4.44.1","ts-morph":"^11.0.3","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","klaw-sync":"^6.0.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"10.1.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","progress-bar-webpack-plugin":"^2.1.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.x"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.70_1628174658123_0.6253867613467166","host":"s3://npm-registry-packages"}},"1.0.2-beta.71":{"name":"element-plus","version":"1.0.2-beta.71","license":"MIT","_id":"element-plus@1.0.2-beta.71","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"148f16d5a0a800549989f7869bbf4d656c652d36","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.0.2-beta.71.tgz","fileCount":2401,"integrity":"sha512-tlfbRORIav8gJcIpjZI5F6aJIVHIaDuGO6/vKu43lgYq4JS2JPNRTjvrSE2p4f5xLfaFNfOWjCS3sybXLfMg8g==","signatures":[{"sig":"MEUCIQClczpVyNDG4CayeKk0v0Kjtm3t+ERa1J9v6Yg6doe7SgIgZtFsDvsr1dGnEfoxKclJxVVvrp2JhUf3eWvFChsZIyI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12361769,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhHILTCRA9TVsSAnZWagAAX68P/2aTindu96jJcIzvnpze\nmy2wXNFm9JN6P20zvukk0B7qsYlxUkL+/4+5+b2aofIogEHYXxaqfv8jUF97\nPKrgC/dXlF+SgBitjbX0KhMTxTg9ZA+9eweSAoLUrADemkgthDYJSCh64NUX\nli754gfkkjXibduYMGip5K2iNrLmrxGfGgLAE0O/kRod9lPBUxVescZ46SAn\nQ33ZbtOXFHvL4ajSIunrkSlemQb2g52rm88ozpokm7mz+c/jb5UJSCBnE9a/\n8ZyVTYYA1//Fzyo7SuE5PIycmahUBQbbToPbKwXyf4He+Z/fZDAELygZnBax\n68u/h23Na3BTbVimbNSTuKvQBsd7m7GxycI5fjI/0T2Pey7IpVML8Q5Vp64q\n2ALzl0Ku/Ai7HCXcpDGf1nL2jLqTgiUpppvRTHyN/SGcSlN7XdXRcbX3L0Cf\nNwJQGtMuYoI4fcZ2RAj4jUYJh8wnRVXqRfZ0Co0Ji23+NTTJFdiHw7xLfT1q\nsgZ/vR7pmLRNYMUIrlpIHPAEn4Ukce/VHdcJYop26XFoFSDxTucSedYP32xO\nrMEsIgj2TmNjZkBRt5zN1+XnH8jG9/8G/IQwG8ZyLjulYs/I56BiJ9cCZ5M4\n6Y3clRR6R8q5lilMc77R9thXrscRkOz/TW6ABAi+AnCgcLH7C9OxzQ7Xyr/N\nKZNx\r\n=V7B/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged","pre-push-todo-open":"npm run test"}},"style":"lib/theme-chalk/index.css","unpkg":"lib/index.js","vetur":{"tags":"lib/tags.json","attributes":"lib/attributes.json"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"module":"es/index.js","gitHead":"3b48b2870b440d3001f4ccd27a010f9366ead151","scripts":{"cz":"npx git-cz","gen":"bash ./scripts/gc.sh","lint":"eslint ./packages --ext .vue,.js,.ts","test":"jest","build":"yarn bootstrap && yarn clean:lib && yarn build:esm-bundle && yarn build:lib && yarn build:lib-full && yarn build:esm && yarn build:utils && yarn build:locale && yarn build:locale-umd && yarn build:theme && yarn build:helper","format":"yarn format:scss","lint-fix":"eslint --fix ./packages --ext .vue,.js,.ts","bootstrap":"yarn --frozen-lockfile && npx lerna bootstrap && yarn gen:version","build:esm":"node ./build/bincomp.js","build:lib":"cross-env LIBMODE=core webpack --config ./build/webpack.config.js","clean:lib":"rimraf lib && rimraf es && rimraf dist","build:type":"node build/gen-dts.js","fast-build":"sh ./scripts/build.sh","build:theme":"cd packages/theme-chalk && yarn clean && yarn build","build:utils":"cross-env BABEL_ENV=utils babel packages/utils --extensions .ts --out-dir lib/utils","format:scss":"prettier --write **/*.scss","gen:version":"node build/gen-version.js","upgrade:vue":"bash ./scripts/update-versions.sh","website-dev":"webpack-dev-server --config ./website/webpack.config.js","build:helper":"node build/build-helper.js","build:locale":"cross-env BABEL_ENV=utils babel packages/locale --extensions .ts --out-dir lib/locale","build:indices":"node build/build-indices.js","website-build":"rimraf website-dist && cross-env NODE_ENV=production webpack --config ./website/webpack.config.js","build:lib-full":"cross-env LIBMODE=full webpack --config ./build/webpack.config.js","build:components":"rollup --config ./build/rollup.config.js","build:esm-bundle":"rollup --config ./build/rollup.config.bundle.js && yarn build:type","build:locale-umd":"node ./build/build-locale.js","website-dev:play":"cross-env PLAY_ENV=true yarn website-dev"},"typings":"lib/index.d.ts","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"web-types":"lib/web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"workspaces":["packages/*"],"_npmVersion":"6.14.14","description":"A Component Library for Vue3.0","directories":{},"lint-staged":{"*.{scss}":"prettier --write","*.{js,ts,vue}":"eslint --fix"},"_nodeVersion":"14.17.5","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ora":"^5.4.1","vue":"3.1.1","jest":"^26.6.3","sass":"^1.36.0","chalk":"^4.1.0","husky":"^4.2.5","lerna":"^3.22.1","eslint":"^7.7.0","rimraf":"^3.0.2","rollup":"^2.28.2","esbuild":"^0.12.5","ts-node":"^10.1.0","webpack":"^4.44.1","ts-morph":"^11.0.3","vue-jest":"5.0.0-alpha.5","cross-env":"^7.0.2","file-save":"^0.2.0","klaw-sync":"^6.0.0","ts-loader":"^8.0.3","@babel/cli":"^7.12.1","babel-jest":"^26.3.0","css-loader":"^4.2.2","typescript":"^4.0.2","url-loader":"^4.1.0","vue-loader":"^16.1.2","vue-router":"^4.0.2","@babel/core":"^7.11.4","@types/jest":"^26.0.10","file-loader":"^6.0.0","import-from":"^3.0.0","lint-staged":"^10.2.13","markdown-it":"^11.0.0","sass-loader":"10.1.1","webpack-cli":"^3.3.12","babel-loader":"^8.1.0","highlight.js":"^10.4.1","style-loader":"^1.2.1","@types/lodash":"^4.14.161","algoliasearch":"^4.4.0","clipboard-copy":"^4.0.1","@commitlint/cli":"^9.1.2","transliteration":"^2.1.11","babel-preset-vue":"^2.0.2","@babel/preset-env":"^7.11.5","@vue/compiler-sfc":"^3.1.1","components-helper":"^1.0.2","eslint-plugin-vue":"^7.0.0-beta.0","markdown-it-chain":"^1.3.0","rollup-plugin-vue":"^6.0.0","throttle-debounce":"2.3.0","markdown-it-anchor":"^5.3.0","webpack-dev-server":"^3.11.0","babel-plugin-lodash":"^3.3.4","html-webpack-plugin":"^4.3.0","rollup-plugin-terser":"^7.0.2","@vue/babel-plugin-jsx":"^1.0.0","markdown-it-container":"^3.0.0","rollup-plugin-esbuild":"^4.2.3","vue-template-compiler":"^2.6.12","rollup-plugin-css-only":"^2.1.0","@rollup/plugin-commonjs":"^15.1.0","mini-css-extract-plugin":"^0.11.2","webpack-bundle-analyzer":"^3.9.0","@babel/preset-typescript":"^7.10.4","@rollup/plugin-typescript":"^6.0.0","@typescript-eslint/parser":"^3.10.1","cz-conventional-changelog":"^3.3.0","rollup-plugin-typescript2":"^0.27.3","@rollup/plugin-node-resolve":"^9.0.0","progress-bar-webpack-plugin":"^2.1.0","babel-plugin-module-resolver":"^4.0.0","css-minimizer-webpack-plugin":"^1.1.5","@vue/component-compiler-utils":"^3.2.0","@babel/plugin-transform-runtime":"^7.12.1","@commitlint/config-conventional":"^9.1.2","@typescript-eslint/eslint-plugin":"^3.10.1","@babel/plugin-proposal-class-properties":"^7.12.1"},"peerDependencies":{"vue":"3.1.x"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.0.2-beta.71_1629258451520_0.18162667770096208","host":"s3://npm-registry-packages"}},"1.1.0-beta.1":{"name":"element-plus","version":"1.1.0-beta.1","author":{"name":"Herrington Darkholme","email":"2883231+HerringtonDarkholme@users.noreply.github.com"},"license":"MIT","_id":"element-plus@1.1.0-beta.1","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"6dbe7a56750e22f0bc7df70fb79c939d14fe7cab","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.1.tgz","fileCount":4052,"integrity":"sha512-UdvrvFbybq4SQeTwwOZp5WzAxGMEKl6XMBjEIi+p8j+7tN0nSnbNqZgKtHbakWf4gvTafBngNEtp5dS5A488fA==","signatures":[{"sig":"MEUCIBgZnskryspqSjX5OqfyjFl0lIW6DzEulw2FGVhVFqQaAiEAkj2Do2nxTRMwyDRpE4/y3gZqlr9vNPoKMAecFwu+WhA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38914090,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJLX4CRA9TVsSAnZWagAAQ6oP/04aN/+/cSRizwBIwc/V\nc63yufEmm6n2FVFuBL1gDGK1mRAnFJGMaWoMWjvKGRAkGTzAwId/PP6Hjnko\n5xz7bOC9AvQxpqulsx8ah0BWCGLWe0tG336Sjpmx8yCUFCAMM1IyJrYWzKaZ\n4AUy7Uy6/+VND4t9lLIV6Zx2PAYsyUsLOP0Ci4IxWkcpt4MXjxycIVlz02gD\nlT4UiJw8qCU14SC90dhZmERDP3iu9LfzaOu7L+02q8sW6o6ghtWJpJSejV0u\nPjm8Xudlz6Ak1/U4mSS+fCcdRBs9uuMqn+FtF1EYeu1OY3Nz8b33zFjWp/nX\nIt7Wg2QgQ0VIuFmRxVQ1Wa0LW+rNLx3yvqKxiIQrQEU66LkPgfoTqJeS0nL0\nu8H1QtW5uj0IkRQb6Cjdm9589GhrvRyTvuJ2v2+zUqfEO18s/kmU6Pmdy08c\nw2vVbrneYkBJoBjY6dYSibZf1frafOfhz5gqeFQhgA33yPCHRusHD05DYXPk\nxSTP6uUtXveCG4AdUP4lqdmf0uCkTr9GhuyFbprbmT4d42KNlTXz3LjBdWU+\nk/5qkvCDlDqxumv0ZcX7koHpuO+hAkEwU/N/2A1EIqRMh8zFX96Pk1cFeX0E\n0dVInFGhdZC3hPxaVL8YKjWbHgg99M5LCkB69CHwy1i8+EbZ9Ov+KUuZqIV6\ntyk+\r\n=Hdse\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.js","gitHead":"d1b375905477c641d7c030af7a1900269e335c92","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdevlivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"6.14.14","description":"> TODO: description","directories":{},"sideEffects":false,"_nodeVersion":"14.17.5","browserslist":["> 1%","last 2 versions","not ie <= 8"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"@element-plus/test-utils":"^0.0.5"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.1_1629795831909_0.797114986124349","host":"s3://npm-registry-packages"}},"1.1.0-beta.2":{"name":"element-plus","version":"1.1.0-beta.2","author":{"name":"Herrington Darkholme","email":"2883231+HerringtonDarkholme@users.noreply.github.com"},"license":"MIT","_id":"element-plus@1.1.0-beta.2","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"e211bcfd7e8d7376cbbe9ff538d9d0f70af4f364","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.2.tgz","fileCount":4044,"integrity":"sha512-Yagc9828QadE/YCweByXGLNId6H7yR9isKpSUeDWRqA/62m1mTs+g0XoPHIWMPcSTSJ7JqQJGu9DzxcQj8Yb5A==","signatures":[{"sig":"MEYCIQDOLHvrwY2T2fD9AxLPMA0lyFID+WExgML0on2TgWl7lgIhAM5CN4mVlkm2ZOno6WUboIXLUiknPtnqiemWy0pn18jH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38836654,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJR7mCRA9TVsSAnZWagAAojUP/1WUWONiKMHbm0kbCxD3\n8Gp36L45kO5OtcBWgd6SKjX+3Wecajd9FJVsyoRFOuCLJaLXn+qXKxBKW/ay\nOA29Frf/gJUYFx/5zVFtddqGZxCpXT0iRLQI60cuZgsg5JCFaSrIpQXFw+El\nyXVS/BNHHx4o3WYe4xI1aVfQ4Kq1rpyG205UVCDHU5SxcYSvl7cibo/7u25o\nLPMtTs7RuzRVElHinOcq+5/p+HpEfPO1P1jAXrdOAnuG2UEannAbmi0tlHhV\nDUap10LEwup4rEPeKwO28oPBBRuYC4NtneuVt4+TTwO/YXsOPY11LFBVhkIU\nnhuIB0rfWjV2tIGgTyUApa7Om7ZH3cGsLKLo8LmEU0EAXBbiZlI8bkhVRtQp\nsF/ajwuXgZQzF/M9x+ej/kWsaAvbHQAChd9PhYvSmasxobF/tRxzlL3lx3yS\nQT45j+bxWCnSh3EyaYP0oy0EjDxhsWiEqOZKKq0O8YmKZQQBs3fgYZimkGPp\nxfYAPy7u/AttrCai15lMOHgiIcPuo3/o3veLjmCwYNaa9Sj8KctIlOV5XXyx\nwkZem9RqZAZiVa+M3/BS+/FVAqVKH2xsvB1Yss/m338rNiCJ//PkjDF/q9Mk\ng4dHRmxtlrQMBgfHSHcipof1FSGDzseT0Y4Tj2FgvBeUNR5a9a3es/ZQ6L4e\nG1A7\r\n=mCOl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.js","gitHead":"9f776c504b4f6db383ce839e93e735deb23c178c","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdevlivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"6.14.14","description":"> TODO: description","directories":{},"sideEffects":false,"_nodeVersion":"14.17.5","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"@element-plus/test-utils":"^0.0.5"},"peerDependencies":{"vue":"3.2.x"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.2_1629822694407_0.37914619741189304","host":"s3://npm-registry-packages"}},"1.1.0-beta.3":{"name":"element-plus","version":"1.1.0-beta.3","author":{"name":"Herrington Darkholme","email":"2883231+HerringtonDarkholme@users.noreply.github.com"},"license":"MIT","_id":"element-plus@1.1.0-beta.3","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"8c577214560a94472ef06cafd4193f53f3c8b0bf","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.3.tgz","fileCount":4044,"integrity":"sha512-kvTOkbIGDDstCA5vtMmbXHSfxOIFwBaP56RESIvvdSMdOL0yUWwWkaHQxGjFTizK1p9s9ZbeXEAoUcXLCU+Baw==","signatures":[{"sig":"MEYCIQDIafo5LiWP8CiJ6RfjS/8wKtlnXozx4B/IGoC7sxwwpAIhAOQvuggVpPqZDBHSwyd+WoCVgpuWvMX7HQBLMNUWmxkg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38812737,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJS4fCRA9TVsSAnZWagAAt3gP/iir1bfDnBXDNcdEXxWL\ns+CXpIM7f3b/8I7auPO+sndminVItFHgTgCwC6y3Nt4Sc3Aa+91Ccc5gmlhQ\nEWD/par8N2prc4aT9miYZXnL5psIyyuez724StqKJWO+iJmW9kgarX57wO3W\nnA8yPcu1hRij2+P+IQGJv+tO77dFJZwQQm4yN2MxZkJK7Dwxq3mAssiIrS16\nueJL9fuCiI16Q69b/JQGhTfNbDGWVS/SDDnrF9753YIiP/gO92HYb2ze+/N+\n4dywEUnv14pbSjlbj1FcWbjzyvtM37D5KlnRZiDa5QDYWzEw/kSH3WHa0Typ\nNjLUBnwbiaU91XeeAbEKUBJ/Zxu6fnh8UNNqxxnWsnFdKXNxuegTp/YN2ntw\nNq6EyQXP04N6Hx2W6fUJ4VWS6EOIkopijQ+a0f3nXRORqWb7HynurnL54AJg\nPq0Tiiknkg3ZZrWcT1a/q4PZsgPQBl9AQNdWLiLBWtQ0b2+lwUnm3gIx35NA\nn+MmsjcBlXd2Dr/zl8eMnhs1RlKODC8olxdBU7inCQFAYsnqLIb3ZPusTDhb\nOTBMbNKCw09VWDJa1QMcol1MTufPco45lC9yk5JY3qm+dw1209SjQvj8y3rd\njfN+tyVJAX6/tsAqjGdj9I1P5PYJYEFX8h459eBJzI5JJBWJTsM0zV1xg0k9\nmKRw\r\n=BK0v\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.js","gitHead":"0bd84453976d2dc1fb0999437321d65c07c404a1","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdevlivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"6.14.14","description":"> TODO: description","directories":{},"sideEffects":false,"_nodeVersion":"14.17.5","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"@element-plus/test-utils":"^0.0.5"},"peerDependencies":{"vue":"3.2.x"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.3_1629826591057_0.5720457817014879","host":"s3://npm-registry-packages"}},"1.1.0-beta.4":{"name":"element-plus","version":"1.1.0-beta.4","author":{"name":"Herrington Darkholme","email":"2883231+HerringtonDarkholme@users.noreply.github.com"},"license":"MIT","_id":"element-plus@1.1.0-beta.4","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"c82afb73ad5e35fc0ee99274783c1bbcfd8493f1","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.4.tgz","fileCount":4043,"integrity":"sha512-wtef1yfLX4IKysspX18s5bsGU3IG6YbkueBorsXi0L/5ykFANoui8QTverAKMQ5ulBcE/jcR7wegfmXGnK9iOA==","signatures":[{"sig":"MEYCIQCM8/eQCq/rKPfqiwtOZKByrYsAPROG84gXCAjPSOWeqQIhAK9MkM6/ca0bHkK6MvUCBDHohDjY7LaeRDRge6QTmpzr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37162218,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJbt7CRA9TVsSAnZWagAAhrQP/2f66kb32QqVQc2JIiHn\nYlB7Xkd7Zs66ZGX2fKRvs9/yqP8E8irXx5TzJXOGmqh4MF2/3LFv/XHU035h\n38vf8781doAfDkHxM8hFIZgCcOypzQ9nvQ6plslW97EKLzvgzo9oQ9k3Gzgf\ngK1WDxZosgQFMmlKT0Ekd9oETQpRS0jq842pn10qeMRj1pOypIy1cVrIJwBw\nM6WupqbyFioGY4kpAh+WYDpVy5rs0q/oxO0tvpM25prV53Cuu5zDJtuMfO2K\n5lkfYwQgS9wfWVy+IkC3U8LUsYs2nJ0aqqPA/NCC+R/q68k7BbiGwHdIPLsl\nXWNJKuGPCYMiDy2b/+9ex0/EAD+e8xzKQUra3xAfzCE14FtImx5VAaOq1oMw\nsHQE99PrsIUhwp7vvy2CkPFDfnIpgIP1rnRIhYGaSpYVERULt2cgXmD6ibjO\nQFAzpVgKHwAb8IMAS34qN2VDDDiZsUrNnMth5c6khQqTTINysREQSvujFN40\nNK0OfDyfBhYTIYMMnhnBy3UX1spXWvyu6x44icVMSJXNmgNxoPk4JZcP1iEf\nCIzeHPBITvPSqk+MoWR4aTCTcZB7UZQnY1u1u2d4o8KPVs4ofum+r70oduoO\nn4xxycpq0XhwdmBzg2W/oSuW2K+PRpuCTJmXoOU1g3c9PiVR6Tw9RoxyjUWJ\nWKpG\r\n=sNHE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.js","gitHead":"aa8e007c8fb0d35a720333b09addafe2e9b096d3","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdevlivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"6.14.14","description":"> TODO: description","directories":{},"sideEffects":false,"_nodeVersion":"14.17.5","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"@element-plus/test-utils":"^0.0.5"},"peerDependencies":{"vue":"3.2.x"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.4_1629862779093_0.2554855397623419","host":"s3://npm-registry-packages"}},"1.1.0-beta.5":{"name":"element-plus","version":"1.1.0-beta.5","author":{"name":"Herrington Darkholme","email":"2883231+HerringtonDarkholme@users.noreply.github.com"},"license":"MIT","_id":"element-plus@1.1.0-beta.5","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"43ac9908857f88e220f91ce6afcd332fe2b04dcc","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.5.tgz","fileCount":4170,"integrity":"sha512-RWdBie7FtAw/IOfbiD4DQ4O2W7+SQBHkCJt7ZVipJIUzvCQF4hbD4NjkBXpCtYRylPLDt7afAO/pC0DRV6FIgA==","signatures":[{"sig":"MEUCIE7LscQ6wLqqcCpK+rozG5MurNZ0pcd5pOiVYa2qgpmsAiEA9FVfgxvejYyZuJcm1bQJ38h/CFeFx7YS4WZ9vRE7zBE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37609752,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJhc7CRA9TVsSAnZWagAAsTMP/3oD1P1cYsjjE7IdxdiA\nJTFnO8CcDTwTkh3Smksjv6l7w7QUD/IfCXcUkPKVBdusZjOSOuqkFcGtkBA1\nIbCZc5EI+ipcXQJxLnyqoLSVrVzwuToAZicqojLoXHwb1xqNoEA522Z1oS70\naqcof3INXtzkeDSv92j78dNe3kjhwBlrTFpJxUMOtrQnan7EPkOReyuDhM28\n6mgLPF99CMe0OQk5yh3vbVhCJHKFdkZoBg6m05S6SybDMIdtLR0ZSgvEB2JS\nmJN+JesrOWr+isnLSVeFEjTHiAFrgYM5nutU3gs0iq5XUU1dnSyJhEXu9kCT\n//YdUzhFeeO/APRcWN4NeF/I0ner1W4Xc2yUQYmlu+RANMCJHnaOxjq9LQTd\nhgQ/iFHCMWl8ZIb5tAPe4NEDCEDteZ01xNz5zmD5e0D16aBFIAUk+RkXnyo6\n12HO0md5t+3+6XwDT0rgCb2NNclDbwlU7wmvhbyYCQy1lfGKaQz9+ghIpC0G\nukYzzfegFfnpTQfyZO8lUxBKiOLcU0GVUoPqY1t4fNfQTotzuXhF5Ud3TDM9\ntuVjQntjnBkYI5K8D+qsGAGt11A1t/stnUIZHJwIFOyIOJv73sHG+x5t9kJP\nMnGfTxh0ofk1O/hb9Lw3OL21jg/By/UMSNd9H498U6pCg7uHQc5pTHae1QcJ\nfwY7\r\n=GpwT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.js","gitHead":"ec7dddf62cd87b30eb2b453731b19a8ef5662259","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdevlivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"6.14.14","description":"> TODO: description","directories":{},"sideEffects":false,"_nodeVersion":"14.17.5","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"@element-plus/test-utils":"^0.0.5"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.5_1629886267287_0.040466977176483176","host":"s3://npm-registry-packages"}},"1.1.0-beta.6":{"name":"element-plus","version":"1.1.0-beta.6","author":{"name":"Herrington Darkholme","email":"2883231+HerringtonDarkholme@users.noreply.github.com"},"license":"MIT","_id":"element-plus@1.1.0-beta.6","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"ba47b09b3ca434b17c6e21cc88934657d6b42ff8","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.6.tgz","fileCount":4170,"integrity":"sha512-tcDveAyOxWuombFrR3F5TlqLB0nU1XsULPWNs2ja0hGjDWJNx/Vc06JGeMfHpoXLFZV2VNroJtMjCjTALjWxxg==","signatures":[{"sig":"MEUCIQCWKNnipmfDKmnKu/zQ0UMoPADgARcrNWQIrRMxSawuSAIgcTxP9nzSzyptjH3uDujBpdUqXf+IX/3cN88q4/YZ3pw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37621285,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJ0L3CRA9TVsSAnZWagAA6xsP/jWKidh5yOlRz0nK12IX\nszg++3NYCy7aYIp8Mu82oGUxQAbjsrR43w9n6v0VItv8LhG0O6+E+i02pyKU\n+QR4Uh/x7eReZASZePgcbYTx58vpIuXKWgHKogMQMBTt93yerVo4ftlFprY+\nP0eNoqwpbo30E/WW2pO7NslTA1Kkr5sh3M96b1PgAZfcNtlbqlvAbvURrMq2\nIilE1lOnj1p78fQtqYAr9/U3jVuDPKXqW62NcdxDDSX7ShLcg7FvTToe/xcR\n7OGWtA6Saxl6ETt7/ThMEH3gdfN9haLaSqPKaag9fExsiq2UfgHDWLbTbY5o\nOihh76EBV9f+mb/LNTce4+tuu0oVXhgExZXjYEgAfF6y1biGGySgCX+ANqMT\nOOIgtWQyvtpObUki5vRzGaUB6ERKNuRIKIF3sYOKQ+P+gV4HJJsYltIpXece\n8MAEtF50k/vuAskK6cx6dJtdTPax1kYFdqe8fLO/hX3uRQQ6ep8Z9yomxr3T\nzKEMJfSFn0AHxn3A0zCtJ6MjvR9a1sw16YeL+Ih4Mcu5q1BD2cDMk+kM74WM\nwxdIrCKKGo7c4frTbcym04aEjQBZg6iRwHyOSwR8blMH03vPGxbYPaGl7Sn6\nrm8LqahCvWZU9ea/dQE3vKpCWE+0DpNRxLUCUsoVMxC1qFMf+B+F745DHQav\n8jHY\r\n=9qaM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.js","gitHead":"bb48c89a40044429de4de151cf98a11450355926","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdevlivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"6.14.14","description":"> TODO: description","directories":{},"sideEffects":false,"_nodeVersion":"14.17.5","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"@element-plus/test-utils":"^0.0.5"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.6_1629962998649_0.31766864254256566","host":"s3://npm-registry-packages"}},"1.1.0-beta.7":{"name":"element-plus","version":"1.1.0-beta.7","author":{"name":"Herrington Darkholme","email":"2883231+HerringtonDarkholme@users.noreply.github.com"},"license":"MIT","_id":"element-plus@1.1.0-beta.7","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"9a877bc2d72f5c3ab6f78a3c45fa6f458ea87fb0","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.7.tgz","fileCount":4170,"integrity":"sha512-+HcIwJsd0/kXl5roqgPhWhpbxL+s8cWMVD6+Lg0HS1gI9dnBZ3dN238UMYmerk+fCpN7l4V0ShuqM1gq1a7nNw==","signatures":[{"sig":"MEYCIQC81J6iA0tBaVFCznU/M9R/KW2wB7hJoJiJiOGYibmSOgIhAMb2eQdsPVGAiy78V5qb3X0rRpXkqjU4HehH8E9E1l0S","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37624379,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJ6J0CRA9TVsSAnZWagAANYQP/R+eZqTIAy9V0BwR3T6n\n0MxCKLwlUJkuiLqzDw6Mj9cNhSvvH8cPz3hPX9DGdm74VT6uca8Md64nXvWO\nI8tueqld8PTErp+CkfyRT6KI/QtTXykWmWaANbjVKfnBh1ED7jGWEpNWaojw\nM69uCLq0hzB90D/en7XR0WNpI+2FS3iTQnW9Zk88wlCkYoQeReKCquAsw9/O\nBZngTpX2yiWqvPGUIfcx7G5zVxBrL/8YmsExw/KCnYlrhxWv/drybj7FaGcT\nW8lOKt4miRwFH2Z2ORodIQV+7n7HYw9tZ3/VHbRL+Se4BM4FJ3XizIJLXcmI\n3wlud/NL0DPD3TPbRgBba1wWlVxJkkXSM4MH8LjPmwGtmen0Fi9jcoopn3o4\nLNRi5IHfZyRTXOGeqg5eeuG/HaLxZOtgcT+pAI2hCTG9BjX3qEqMQ7jau6XB\n3ddwPPrNBaTofPoJJ1XbzdNxiGtGSGoZpnXBqF6L4AeUUKm1btUWP9UJ7imA\nY88su2n9YiedcB6HId2SpNiNlL0K+48Jd489JqMlarWGAUipf1O/zi7FJfFc\nDBTYQu/6vGLPGPfiPUad3QGZ4veo1J43GSLjw5WG2kJDsGI1WrBXlGwAhFoQ\nUg1KjdTwoKZ2u8wggjqLVB1rrBxq57Y8BiqVbov1+gvTrexENBTEhBtL17wQ\nWGjO\r\n=FxBJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.js","gitHead":"6c1945b649d5bdfaf3470d93aa45056efcc29f9d","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdevlivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"6.14.14","description":"> TODO: description","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss"],"_nodeVersion":"14.17.5","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"@element-plus/test-utils":"^0.0.5"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.7_1629987444654_0.8683104461161377","host":"s3://npm-registry-packages"}},"1.1.0-beta.8":{"name":"element-plus","version":"1.1.0-beta.8","author":{"name":"Herrington Darkholme","email":"2883231+HerringtonDarkholme@users.noreply.github.com"},"license":"MIT","_id":"element-plus@1.1.0-beta.8","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"e40a2b4767ccbee1ff9aa6d4ed284863ad246e1c","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.8.tgz","fileCount":3875,"integrity":"sha512-L0z4UoaazLgvimU+Eb8KHwBdX6ND2sSOO/ja70FMJl7Y3T+PxP95OZAkpr1sNiBzMaVVdMef4lQLBwPqTO6PKw==","signatures":[{"sig":"MEUCIQCh74T0mCqizs+vwzNLulRsKuop6ejXt2H4lD3fkWr4jAIge4ImkQTnDm5HmxooBwA0TY8cb0k4CArIcn0+pyFc0Vs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35538560,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhLgCgCRA9TVsSAnZWagAA8z4P/1GcIeXFbXk7LZrvV+us\nlQjzdm6Glt3pAs2zTIeci8Bk0kI1HZGOedWc+PZ6KSijk+avXwjd2dDfWGUd\nfD3Tfw8A9FQ7HAvDVAgu8yNX4qTPmB7O4zOtMf38xAOPhcnBvNn4iR0/Quj+\nW5wu5dohc0N01plJJbnGRslfocIpaxj0oZcsgBj4hB3WX8RXDvr/xAYsHsnG\nUX6xpapLgWMLaXoA6SSu8nGsbC1ajbk8a7XkHQSebiZiHFz4nwiRHce7b4Pd\nBynLiiLeF48j9Q1gnF6So0hubEzSC+6n/SNEfeopLNJMQuQFAHQwecBhKCs6\nK/KMvdF4+eop+yjKFdLzlTUiZ7znKbG++8DaE8sWAe7L52NSiX74sVKZoZN/\nfaILcI9Ot04fgsvwH3lm1sXdzyJrmdMPEWuNOrdlBcFt2qduJGIC6+fU/VQ4\nAtUvPPmBzgjJGV0/HaDNEBPvaaOLAmPO/D5mcvqqaV4xb66z7hUS+SZUCdkT\nqlYSWesVXjU8QXA1bwr7OSxSA3YUoALZDEcuazJAGf/UYbG07MW2Hf3DgYVd\nGm1VRzK5Gd2yBZqdfDArL21zu1zLFq+yn9ut7wB0Q9S9cXgWpSLD6YjQBazR\nm849mERz3FFTRWP7oOIIN6dhG74o7p1jvBRvJphzGvU35pRQ5Mt1oaW8l9Fq\nd4jc\r\n=4nVk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.js","gitHead":"601aa3a0e1552e5cc919a7e7798d165a800cc0f8","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdevlivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"6.14.14","description":"> TODO: description","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss"],"_nodeVersion":"14.17.5","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.20","@popperjs/core":"^2.4.4","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"@element-plus/test-utils":"^0.0.5"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.8_1630404767938_0.4465725495842472","host":"s3://npm-registry-packages"}},"1.1.0-beta.9":{"name":"element-plus","version":"1.1.0-beta.9","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.1.0-beta.9","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"e193cc956dfc9b731ed5cb32e2df0eddafd95dcd","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.9.tgz","fileCount":3695,"integrity":"sha512-QA5jOHDGSDJqVGAgzNrv5TTd/bLW+zICWy1ZQuvShzfrrIX8W+xL3RZdHJWANHhbBetLBHPFMvEzLSPvPmUosw==","signatures":[{"sig":"MEQCIAODrY+41RsJJNLhyKkfWArGEOd63Hsh2YreYgrZLBvjAiBjdZFc1/TBZlAolSkl6iIldhnjZkX0rV+1UEwE1Ug1Hg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13970675,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhNOUnCRA9TVsSAnZWagAA9JIQAJmQctpRgjYF95AbHJgy\nYc5bLYf2NKCcYT4rkaBRrXk+109yWem+s5aAHm03cdz74uXqRdLdgT+wqijP\nZZVFIuR6pQlcEBFPQky78JA2bmwxpBDFkN1BZtyNdN4FO7hsOhLoSaFQpokS\nlg5tYGFme5nxrPJ26bcWHvnRKb7irNyeGp1B8vhqvyTwPWyqO4XuKVkrwQAf\nzMec9p1eqik2B3MpA5QjLS3xtL0Xy4iufEGtf4k6qpSFwGtj5R9Bri9oqVKi\nUGGP13bSlwL7dSFvfCqED8E8XXgTpsZEnx8Vtmr9KNckoOrn+EAuG6Z5tmzR\naROzD7nlFLabn64c5+8TNcLLlX0Hf8tCjC9DfdygIvuyHWaU8AV38EHridji\nWklMkWc02LezLQBn2opIZ547Eeyb0Rm4uq7VFKmQ6RHmxniD4REN3J1WTYsl\nSVvbB0FB6c0CI3xpqmuc3DeAu81Z5A8WQKlnyzARWxEraEDaYUv0BlpMZtkq\ncRYhmp7PQnpa07wa/qICtQlDCLb35zw2fi9YWaclOx0pOKjLk74KV8TwKCPe\nWft3CWr9ta8u+mHWvwNaISplBRTrRMlb/62w8StnImbCepuhKIeFOTRb8T3p\nmTf+7E7uzpqKC2/qaAWE+0hl8cp3LTV2/33bcr7aOrpSLtdQnLikKARK7kdK\nQ0Vj\r\n=nhAh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.js","gitHead":"eadeb51fa503949f60d789f1dbc28caf5ec1228a","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"6.14.15","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss"],"_nodeVersion":"14.17.6","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.21","@popperjs/core":"^2.10.1","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"@element-plus/test-utils":"^0.0.5"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.9_1630856486933_0.3580133293800303","host":"s3://npm-registry-packages"}},"1.1.0-beta.10":{"name":"element-plus","version":"1.1.0-beta.10","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.1.0-beta.10","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"6336d95d2ec9560cde026ded09676c59aff9b3bf","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.10.tgz","fileCount":3412,"integrity":"sha512-vaqdF5JlCtJ63Asqy3tV8iMHR/KlyoGRLL1YGRuoW4zIvyyBRpjvpZAqU6sqIur09rdGR0NHztT8IR2GesWCoA==","signatures":[{"sig":"MEUCIHsGiYWM3/A5BD/I8dqwtUeIDb/f4FHqTapf4fdrz8F0AiEAowAEzQQKKP5PrtDEHw6tad6vPzKqvxSm+T8Lmwhb6Co=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12310658,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhP3D0CRA9TVsSAnZWagAAmpsP/A04ctRcl7G5TDtW9d2Q\ndvUvUsOEjSbIEcr6tqUl+BO/pvKnrFkvsG5DD5PFitH3pi8m5vBskmPfm2jx\n1y9cP3a9ofVQXZCFglR02IVqef9VySGPyJrQShGWdxRxACKpGAK0G5pmtKKO\naBPWTl5TydNkfMVLI9Pdkb/aM3Tn8j52Q3OgZg+kNzj0QOOFnfdpzh4mmM88\nFiJmagAQmX4YSuOkdI2rQthvkduHHjUOb2imdD0Dk19tsv5WMT76ao6FTV/a\nTbruiAWXGdxKG8dLKcyHUd0lGx2eM/p9L6R0x+RHKn4ra/sOu374YMvz/22N\nwo06OwBQW3s079f56eiMoRogG6o5UbRBISpl2sKfTm6LTLQEzqyANIZrLLNd\ncUlyD5GlQf2QdVDyfKhnYqcSr3T2J+c4bw8gOYiZgRbrB3RdD6pFD46IT1Tv\nHCdD92zoMd5OTVPMkUWpDsTd8nY8YtnEXpKesEe4yEVdp5G9UNYz+/LEsuGb\n/3ln1tvPji8YYYatFRLcsIeu5xEww9vFNeW+OcuDVt/6ddHO8Y+lQtoiqftY\n7Jy+DTrGxlASU1nC4+ukSFXZQpC+0dAPVxjl/3FYhGVfJwdDwdQAMO6FD3jW\nuJPa+AeORGx9AuWKHlMKJcQAwujRXIEio8Hc3POh7xhCjl8NBnqF4uGnVvpW\nOXfo\r\n=JO+i\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.js","gitHead":"df6b479acaee0d8dd21f74e307cc5bf1359195cb","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"6.14.15","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss"],"_nodeVersion":"14.17.6","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.21","@vueuse/core":"^6.2.0","@popperjs/core":"^2.10.1","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"@element-plus/test-utils":"^0.0.5"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.10_1631547636309_0.11200510145420295","host":"s3://npm-registry-packages"}},"1.1.0-beta.11":{"name":"element-plus","version":"1.1.0-beta.11","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.1.0-beta.11","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"ff269c442b79643884746e934ab88a4c553a04f1","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.11.tgz","fileCount":3700,"integrity":"sha512-80/FxJnYBkPZbbuLACWavtlAoMKJ/3SKEYABGidGbqfEbHRNfBMpo8bcezAy9f1rSF12ckIodbYXkHWUgTlF3w==","signatures":[{"sig":"MEUCIQCJHPHNSuX7g2bdsGNsfjPJmxIhRu2eYpuTysP1RQFndQIgYeOVh8/Osn9dXrAEEVB8AhQYN9j2W25t/zOXJf30q9Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13194361,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhQOfRCRA9TVsSAnZWagAAmKYP/2rNAqpjNr4+nvy10NGx\nrejn3NwmnFFmws1nQVZybRmMqMdituCiYGjZUMgPOt0Bx4YOi/tFGT6f6rUn\nrZHZjgw81lYNWaFvds4iqNt1zk6RCWNc3KEoU4Gzl6pQWBqgljFZ1VFxUUeL\nQ/1bsDPiLG2pazP1B2j1qFT5psEiZI6iN71pVSGqYLDExkW7blFALbWnfuuQ\naoJfvxfC4czrrp2Medpz1vCmAg+2kUn9Rc5/mlQ02llauGqD4BZRu9rmxmtQ\nC9mBWf/e5tbNpmb0MSH1pd827bcRKvYt1fxarWOdRp+eP+RrA4SthXiyA7bS\n45HGhFJ+i67Wo7ql5bRr8v+xo3ysCtkHKsg2ci78ASLBO8eR4EKI68wTzTaD\nE8D6865xS3ycwWt1cJy1HdNIY/Dw8p0ZdjzOjS6ZxlQ2iqsSS2bdOMvS8Rml\naaJ4p+GUQyfQHIqseuZ/4dEghI5o6nljzvitHibvbySdH+YMOoFsW45m+2Ir\nTMQ9AFECO+fPJVAg1AG79EqcG+K0BC4usMIMtPKW22euFohagL3XDl02hOWM\nLUvQzzuvqubLjquVdtNQ9ZpBJrvZ3RQMG05RSYc1rqh3JUN/sKXv8INQDX6S\ntnIrSoRhdCx53YnIHUUC8y4w7VvHjqummNKnB1asUGbLeh+mfAvYdIrxAIDd\nWpNc\r\n=atIA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.js","gitHead":"0b7b6c8462da9681118a6110811e3cce01a81df6","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"6.14.15","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss"],"_nodeVersion":"14.17.6","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.21","@vueuse/core":"~6.1.0","@popperjs/core":"^2.10.1","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"@element-plus/test-utils":"^0.0.5"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.11_1631643601120_0.9831891164828321","host":"s3://npm-registry-packages"}},"1.1.0-beta.12":{"name":"element-plus","version":"1.1.0-beta.12","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.1.0-beta.12","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"2fd646f3c2f787dfb282d091ec6aa6945d1bec6a","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.12.tgz","fileCount":3648,"integrity":"sha512-IkFHcYWGDzHqeL2LpDM5ZQnuviqkNj8Bu9zg/Q6KImGk8xo4rqMf+e4rBHinIpeKzKdVag0c2TDABNBfKvjaPA==","signatures":[{"sig":"MEQCIASP+wUw2mxf8xNpNGbPziAbG3D31GO7nxboyVUhd7I1AiB786NLn2hEMVwNBB47ljmYCklB/tdxgZbyaxmNikWplw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12989433,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhQULgCRA9TVsSAnZWagAAIrsP/0HbqyrLZS1sYIablqvC\nVdrTTN4Qr1MQimVRdnlFu2/RDRpkLrGLD+5tYjl1eYhmQ356KMGfD9XsnueI\nPyFxjZiMIwML9USe7ei/l3CO2CjhF88rq/cs6Lp4wwSVjljC6+B93ti4ODPi\ncQvabhjyJza+KPSZ+YBzZxBCMlcRwNYKfYdOTaQNnjOHs0sbxKB479TlEpHS\nm0DYRux7dUOn8anm8cFzu2C9Ee/w1XuDMtI7j598bu/UtP4OLOIH1rYMg01k\nhHems7u2OlGuq0x+WFE20brLNL8tMeL9q94Bbu6YKENOnyYu2K/ev+9Bvl3M\nH/oORQ+HBDcW8zrl9nBkW+W8jfLYJa3kNA7gP9V+m0VZNiYOwTU7zaXl+1Ml\nNheaT8AOZoh7qIGmljE0y/DrRPoq69V2qwL2SaW8t9jlnZAFfFBkwt6piBLl\nzhzZBJdqrBkTbNzY8dZtTeoR50myuBZ5KmFJ4cNxlQABatHANacnvRXgQiY6\npJEVtsSHrulVxePQW1rs8flyr5f7DD6k1GD3eN06v6kUCk5q7kH6yufU/ar8\nwgjD3SPSBkZ0yfCv6aXGpOUrBgXCTzIfGjUNBBp3EvPW8vDilMA7O+Q+AIPM\nqtDvduqm/sKjuoX56Vam6Pl/lpNw/8pwwdBsmNcJ6uLiHNeHDuBDRXTO4+ar\nUBoh\r\n=ZLw8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.js","gitHead":"9d142ae129bf639253d2eceb8ba9001a0e89f948","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"6.14.15","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss"],"_nodeVersion":"14.17.6","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"mitt":"^2.1.0","dayjs":"1.x","lodash":"^4.17.21","@vueuse/core":"~6.1.0","@popperjs/core":"^2.10.1","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"@element-plus/test-utils":"^0.0.5"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.12_1631666912154_0.7440121134630111","host":"s3://npm-registry-packages"}},"1.1.0-beta.13":{"name":"element-plus","version":"1.1.0-beta.13","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.1.0-beta.13","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"4eb5f766ec103befef09de162193258e24d576a5","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.13.tgz","fileCount":3699,"integrity":"sha512-Ze3nBnlLF4dIxal/pJ8QzpeivGp+I1qeVwoXYtwOL5ie6qNW0Avrg5IcQviJsFMxkzU6HVxqsa1F07sthVf8fw==","signatures":[{"sig":"MEYCIQCeHZ+FB14U2k+c8vn+175AjqywnQ5GzJ0Q3jyHGqSLggIhAPGsNSamvKzKyckSJlVPSrMBqg/+a1yRRrEp+5ZqoxOj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12971519},"main":"lib/index.js","style":"dist/index.css","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.js","gitHead":"be2ba6a2a33d703ea385c62db5dac9f10dc80269","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"6.14.15","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss"],"_nodeVersion":"14.17.6","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"1.x","lodash":"^4.17.21","@vueuse/core":"~6.1.0","@popperjs/core":"^2.10.1","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"@element-plus/test-utils":"^0.0.5"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.13_1632302512048_0.5194150358123271","host":"s3://npm-registry-packages"}},"1.1.0-beta.14":{"name":"element-plus","version":"1.1.0-beta.14","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.1.0-beta.14","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"e10d2696300c0edc180868065f67b4cbc169914c","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.14.tgz","fileCount":3699,"integrity":"sha512-LtAKw33mGhKfLhEhhDvY2rCwFvhc/fBusFetwxh/fuDIHwkA7gR9J+ygcMUX+OLcCUc8IZDhVH6umUaM7fK1Hw==","signatures":[{"sig":"MEYCIQDHeCU26qk+t1f1ZGumZ/pM0QQYpmcwrM41FAsRDwCXMwIhAMQYdHyZq9dGkYBo2mwgGToAv89ckVLVq1zPAL+p/K4i","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12959617},"main":"lib/index.js","style":"dist/index.css","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.js","gitHead":"da1eef4cad66bb93a7406e088612860fb4c744d1","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"6.14.15","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss"],"_nodeVersion":"14.17.6","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"1.x","lodash":"^4.17.21","@vueuse/core":"~6.1.0","@popperjs/core":"^2.10.1","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{"@element-plus/test-utils":"^0.0.5"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.14_1632323297110_0.901152411129339","host":"s3://npm-registry-packages"}},"1.1.0-beta.15":{"name":"element-plus","version":"1.1.0-beta.15","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.1.0-beta.15","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"842568ac39e4765ec2118dc2fbd472d94d37b7f3","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.15.tgz","fileCount":3699,"integrity":"sha512-VK0gFtMqeGdR3/Y/Jm49X15oo8QZbmWOwPVEgWYgrWgUk3NeRo4GYed3BXQdZW5EOOlaGMuho9scgefX+Ys+oA==","signatures":[{"sig":"MEUCIQDxl+xD9paHuipLwqjnAlYxsMuIUzyxmM38OYzljtu/RAIgD0SJynGNuueyQ1enEHFWvHNJOau03qb41Q79qzhSXn8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12978557},"main":"lib/index.js","style":"dist/index.css","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.js","gitHead":"139e79b29dc2b9acc8562a8fda4fbe66bc12ff54","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"6.14.15","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss"],"_nodeVersion":"14.17.6","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"1.x","lodash":"^4.17.21","memoize-one":"^5.2.1","@vueuse/core":"~6.1.0","@popperjs/core":"^2.10.1","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"devDependencies":{},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.15_1632359344534_0.4865253873529729","host":"s3://npm-registry-packages"}},"1.1.0-beta.16":{"name":"element-plus","version":"1.1.0-beta.16","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.1.0-beta.16","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"4409d9e33d005693f6039f5ed1fe05e301b3170d","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.16.tgz","fileCount":3699,"integrity":"sha512-4BZEldnIfFZs5A/saRqaWE4PwTot4p3YZU7qsDr3ev2zp35pcCL9TtpWMLIvNTMxvxKew0HTDPTk9fAWIZFQrQ==","signatures":[{"sig":"MEYCIQDnAo22DEIc7sTB/MOeBZU+adS5WeGTho47EGYfvOHQ/wIhAOeU1A2aa7r0CnDv8jRhdtkJD3aHfcu6jsPIY+DTRhph","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14460976},"main":"lib/index.js","style":"dist/index.css","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.js","gitHead":"61cd81201976d7a15b1c55a2d3e82c3784df554e","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"6.14.15","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss"],"_nodeVersion":"14.17.6","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^5.2.1","@vueuse/core":"~6.1.0","@popperjs/core":"^2.10.1","async-validator":"^3.4.0","normalize-wheel":"^1.0.1","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.16_1632498301567_0.479937824674171","host":"s3://npm-registry-packages"}},"1.1.0-beta.17":{"name":"element-plus","version":"1.1.0-beta.17","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.1.0-beta.17","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"580177916236f8bddf649db7f901b1aca175f98b","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.17.tgz","fileCount":3754,"integrity":"sha512-xUJME+lWYqujGmu8dIcyo4FT5SxqLI8WmqBLL1EdvH/QiFHI8UXx7StB4bFpq8+ooIEHU3a0CccVzMSPEF3obQ==","signatures":[{"sig":"MEYCIQCzuNtc96iWlzU/e79EjkDqXz0LtcXvRQq5vkaJq0P8BwIhAPYh9b8SmVP6qjIzYFtBb4ApLoaAL0KnHa51pRgZHIMD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13310482},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.js","gitHead":"d4dde9df9640da8e40e2230b16ee668d2c0b05ed","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"7.24.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss"],"_nodeVersion":"16.10.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^5.2.1","@vueuse/core":"~6.1.0","@popperjs/core":"^2.10.1","async-validator":"^3.4.0","normalize-wheel-es":"^1.1.0","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.17_1632716686479_0.04383960023814715","host":"s3://npm-registry-packages"}},"1.1.0-beta.18":{"name":"element-plus","version":"1.1.0-beta.18","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.1.0-beta.18","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"eb16d091004a618002c75ed87299208f6dbf662e","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.18.tgz","fileCount":3791,"integrity":"sha512-Q2cscYlpcbq/enuU/vlPLBP5K4bHkPakF6IkCiDrSgOkAr7XQYMem6QUOCRZ/8PFV0UnJRMyPJ7Xt0PKTFi8mg==","signatures":[{"sig":"MEUCIQCG4N+I6zvYlppRJh+OI0rn+CU2rhYXKIyDdqyTcjILOgIgDPgEhkQ5Yr+JvrR21/ZyVfpMZaeajwT3/bZUPKEbj/Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22092083},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.js","gitHead":"2f34abc9004696b62cf22feecd53e0c835f88c72","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"7.24.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss"],"_nodeVersion":"16.10.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^5.2.1","@vueuse/core":"~6.1.0","@popperjs/core":"^2.10.1","async-validator":"^4.0.3","normalize-wheel-es":"^1.1.0","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.18_1632846432885_0.3290893181989416","host":"s3://npm-registry-packages"}},"1.1.0-beta.19":{"name":"element-plus","version":"1.1.0-beta.19","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.1.0-beta.19","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://github.com/element-plus/element-plus#readme","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"234f3bc3f1d822a7102045e7ee1239b675f27acc","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.19.tgz","fileCount":3791,"integrity":"sha512-eKJId8un12eoaL88lfLMBtDxRUJfrAQP3bav9p2QG2agOXu3cvYDGBtT773P0ZEm3/97t+itRbxYIYYLV4iNeQ==","signatures":[{"sig":"MEYCIQCiqpS+kcvL8X0bLNrRCccOFpMHcAPZtC3WAsxBGlvA0AIhAMp2yWbi5pXxWk+Joe5uGaXj9OXR0xANtG0IFl/fOwXR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22536652},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.js","gitHead":"5f776fdfe61fea7d09300930edadd6465df8bc3e","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"7.24.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.10.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^5.2.1","@vueuse/core":"~6.1.0","@popperjs/core":"^2.10.1","async-validator":"^4.0.3","normalize-wheel-es":"^1.1.0","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.19_1633003599379_0.9518940165945138","host":"s3://npm-registry-packages"}},"1.1.0-beta.20":{"name":"element-plus","version":"1.1.0-beta.20","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.1.0-beta.20","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"59523c99a88ca4881d899ba8bb81c4a9273ed822","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.20.tgz","fileCount":3806,"integrity":"sha512-5rBrLzfKGz4urSxqKi1tihylyotSswMCKdXpCAJAfRggMjtS1NfqVtrCYEPdjphmP2JHsj8TisDvbRTScRKF0Q==","signatures":[{"sig":"MEYCIQC8WYxA7RRJ86J08pa32iYJFVMBSHIYsjrdxqUcpg155QIhAPQuIHI64qbPZFuUuQJVOUbndQzGBWukTSqq/rfB+ph0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23015664},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.js","gitHead":"8a0cb4a1e79e56076b5179ffc6500488f4c1390b","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.0.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.11.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^5.2.1","@vueuse/core":"~6.1.0","@popperjs/core":"^2.10.1","async-validator":"^4.0.3","normalize-wheel-es":"^1.1.0","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.20_1633935833056_0.9713378674192128","host":"s3://npm-registry-packages"}},"1.1.0-beta.21":{"name":"element-plus","version":"1.1.0-beta.21","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.1.0-beta.21","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"4b0232b908d1defee81ef94913c9479342d9d7e6","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.21.tgz","fileCount":5421,"integrity":"sha512-QaAX909KgFufXkIKAwXrdHRmv1e+jIyc1SlN90mg9HBE09MnInGUXy0qdYZhVoMgBFyStMkiSIz7XLG8m0ac8A==","signatures":[{"sig":"MEUCIQDKSpvlSXK2v4T0TRe6RFoqCPkj2GqZjhgiv8UMB2sH3gIgFzPjKYglyyBB9mEcuf44+TP1aH0CHJZk3Qi430xYw5w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25122727},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js"},"gitHead":"0ce1da803ee5d294d0a4490c54fd38553f641556","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","deprecated":"bundle error, please use other releases","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.0.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.11.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^5.2.1","@vueuse/core":"~6.1.0","@popperjs/core":"^2.10.1","async-validator":"^4.0.3","normalize-wheel-es":"^1.1.0","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.21_1634547386729_0.8732654386261562","host":"s3://npm-registry-packages"}},"1.1.0-beta.22":{"name":"element-plus","version":"1.1.0-beta.22","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.1.0-beta.22","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"489cdd418975f710a730279cdf8bd61dc29b1688","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.22.tgz","fileCount":3813,"integrity":"sha512-s3eAgSCUdq/eHKCqFx4S8drTtk0xPlDx8F9dxfMaWM6Bs/+vB6zy+3ksNDvdvssA9uyhyzbAZyJShgJhCw4TDQ==","signatures":[{"sig":"MEUCIEMlHg2+1ZZP7TdAk1T7g5EkmHTy4bymgLdhEVYIf8qCAiEAvbo+lIgT3FO+HfoJHyihC1oWYWb8/GSCPnrVf2CG+1Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22949656},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js"},"gitHead":"0f533f9d2280d5aee2120962fc7637429e547970","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.0.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.11.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^5.2.1","@vueuse/core":"~6.1.0","@popperjs/core":"^2.10.2","async-validator":"^4.0.3","normalize-wheel-es":"^1.1.0","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.22_1634697021357_0.5962088595845807","host":"s3://npm-registry-packages"}},"1.1.0-beta.23":{"name":"element-plus","version":"1.1.0-beta.23","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.1.0-beta.23","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"d6b7bcf599c9a3ebabc81894ce77f370d5a27903","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.23.tgz","fileCount":3813,"integrity":"sha512-D0RIluahSsZCH4jJwMSlePQQacz/QecU5JTxvDGuU+p7OP2fpNOlfBqcOu+1YTqwn7qUskWaCHo68FAtxABsvw==","signatures":[{"sig":"MEQCIEe30/M9WEZPQ9YOprv6OjDVVOp2iErIuqulB33rnIwBAiAs98ABf85J6kPhzi3aV5ZCSnRojRJDlOpOE7Fi9wDxeQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22949650},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.js","exports":{".":{"import":"./es/index.js","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.js","./lib":"./lib/index.js"},"gitHead":"361b67d2d8bafbc81bf30d0bc12fb858b57d1689","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.0.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.11.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^5.2.1","@vueuse/core":"~6.1.0","@popperjs/core":"^2.10.2","async-validator":"^4.0.3","normalize-wheel-es":"^1.1.0","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.23_1634698545256_0.5625611173315712","host":"s3://npm-registry-packages"}},"1.1.0-beta.24":{"name":"element-plus","version":"1.1.0-beta.24","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.1.0-beta.24","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"858b05932ebc0be15419d3974d15be2a4f4b696c","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.1.0-beta.24.tgz","fileCount":3813,"integrity":"sha512-dmo61e/D6mwJVacMhxOMSPb5sZPt/FPsuQQfsOs1kJWkhGDmTlny/sZvgIQr1z0zh3pjlJadGAlNS+0nySPMmw==","signatures":[{"sig":"MEQCIDk9/7dShmMaQKpqEgxT7hJ7GzF+4NVBjl5cZPqZPLaqAiBWcujj2wfXNb8I5Up7vf80QEn432PxscWlhsgc4XX2sw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22949286},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.js","gitHead":"2c01c77fed76094592a8265f840fcaac80ca3e7c","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","deprecated":"Version no longer supported. Please upgrade to @latest","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.0.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.11.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^5.2.1","@vueuse/core":"~6.1.0","@popperjs/core":"^2.10.2","async-validator":"^4.0.3","normalize-wheel-es":"^1.1.0","@element-plus/icons":"^0.0.11","resize-observer-polyfill":"^1.5.1"},"_hasShrinkwrap":false,"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.1.0-beta.24_1634699813118_0.7406975366866169","host":"s3://npm-registry-packages"}},"1.2.0-beta.1":{"name":"element-plus","version":"1.2.0-beta.1","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.2.0-beta.1","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"77bfd993741be1731540dd997dbde0d03d065b5e","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.2.0-beta.1.tgz","fileCount":5383,"integrity":"sha512-TvO2NPoCcG0PDph2SHz3xZ+wnTNJvlKHfb1P6uJsYMUhUCWtSaWGXE1kPQVnyi/tWYlQJG05CT4iO3B4+uEj9w==","signatures":[{"sig":"MEQCIFbp02Wf6hbigRnXzMOwGG2mwEiXGS4MMg1JAWkdC5ysAiBTm+bKjH4bBh+LHGlTCJQLZ+CalfkUew/l31Q/hyWrjA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25125952},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js"},"gitHead":"24506d7b0efa513aaf7cc2a5de9df59437720975","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.1.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*","lib/components/*/src/**","es/components/*/src/**"],"_nodeVersion":"16.13.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^6.7.3","@popperjs/core":"^2.10.2","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.0","@element-plus/icons":"^0.0.11"},"_hasShrinkwrap":false,"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.2.0-beta.1_1635649014353_0.04252583917542241","host":"s3://npm-registry-packages"}},"1.2.0-beta.2":{"name":"element-plus","version":"1.2.0-beta.2","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.2.0-beta.2","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"f6c6093405cce55fad45f08d15b8a92dfa72e9c3","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.2.0-beta.2.tgz","fileCount":5423,"integrity":"sha512-A5HpcpgcpoZZgVpAm1fy7sLb5zQj/tafhcJqD7avc4v3NgWDqSa58CNp5B7fpvVhXihRGWssqQjnTh2VczGGfw==","signatures":[{"sig":"MEYCIQD5ZMbWroEIVnJiGJBCVyMRNw0++kli4IYNTUr3DNOOmgIhAKWdxBJ0WFbpCYl7q4yLOL6VSTisbRBCgcCTPpvveL87","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27116832},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js"},"gitHead":"a524f27017e2ee70b217607019999ea3c35a0385","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.1.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*","lib/components/*/src/**","es/components/*/src/**"],"_nodeVersion":"16.13.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^6.7.3","@popperjs/core":"^2.10.2","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.0","@element-plus/icons":"^0.0.11"},"_hasShrinkwrap":false,"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.2.0-beta.2_1636125431629_0.7818828638345274","host":"s3://npm-registry-packages"}},"1.2.0-beta.3":{"name":"element-plus","version":"1.2.0-beta.3","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.2.0-beta.3","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"0ded059e6c8ddc6f5d9dcdf32e1b7ed44ac38099","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.2.0-beta.3.tgz","fileCount":5447,"integrity":"sha512-vvUxR3uL2k9K+WCWz/98hq4uPQ6jvfGf0hfzWvao7pySJkNQq9DtRPC6/4/zUceA/J6Y2Yo3xSbR19JRCwurRw==","signatures":[{"sig":"MEUCICOsX+FHRJYDqvmg4UgoiB/tj4Ho6WPUsixAx76GwKbyAiEA1gr5nZCsL3ZtvcvjP+X8AHoFGzbMtKDXoGa26qU626s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27136938},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js"},"gitHead":"e6e933b2a2756f2b67c30e78c529211d22f3ce16","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.1.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*","lib/components/**/*","es/components/**/*"],"_nodeVersion":"16.13.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^6.7.3","@popperjs/core":"^2.10.2","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.0","@element-plus/icons":"^0.0.11"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.0","vue-router":"^4.0.0","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.2.0-beta.3_1636430289071_0.09478184739809747","host":"s3://npm-registry-packages"}},"1.2.0-beta.4":{"name":"element-plus","version":"1.2.0-beta.4","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.2.0-beta.4","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"970c7c6307ef7433a84691720cdd4c979116677b","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.2.0-beta.4.tgz","fileCount":5483,"integrity":"sha512-wYOwa/Zop5xMqhqkS7jOd32FF0Y2IpquIu8JLMbmvwlWvRUVetE5RO5lvxiF6etZgq8urRVttisXnOzJ9YOItQ==","signatures":[{"sig":"MEQCIBAtJJnbr4HZkeOL0fMVlM81tU69lhsk+OkLD7JxYtOJAiBYE8lSNMWstj13OUIehWGeSGGLlAx1oVeurabZQPourw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27078741,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhoj2ACRA9TVsSAnZWagAA6/oQAKS45+/GAXgqvgM+pK4d\nHeoMW9vTXUzvJWRRV7qdqUEvRWbewvKDTn23q1uoYK951BCG69TLGEVN1DQG\nmfTSqjNHzhoY4NH6c3Gh15SlMYTE/9BUBE06HAP0DiD3zdxZ21ymDPYTTXQg\nTJJj6g6jrmh7iDzBh7wNs5EEHAx1z4O78J33KQfxdq6ZbzMn2YQkeWWsXTe3\nWibxSE1v39U1YeV95t2YVMypxqd7XNziTxcuxCfCm26oSKdMKJqxIFllORnR\nZFsiIVFavTQeYHqtcovc1w3u1CjFa7aRYD5UexXOQLZEDrCnv5gI9cKT1RfK\n0E+M6Hs7COMHn4ncQyGTX9hFmdI4GbD0AhHnwRmDJ/28yr3OA9b1XD+IdV1O\ny58DFMvwaybtR/1eTb6u6Wqz0ygIHiSKkY9F6SDUHyE5aMf23/LhGHVckHIA\n+Wse2GccvJrxWPNVpZW9A5Sly4MLOeSpYBEybFAxXX3Zd5KZcF6PvguHog6v\n7lmVJwpzOHwjf+w+8NgiDZwN2b26ax1tUjjcxacBrDowfpys+6/PKrHh/bMT\n+uvf0c9QMnC/qm+riUR5BNAExjrCUgacScfVc1aohllZMy4FIyMJOpRpBDga\nELDMke8XeErp/e1sOR57JaBLhZ8zoqLlhi/e/bPKZ4Ou0aMWc30FQ+pgresr\n5gpm\r\n=o75w\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js"},"gitHead":"44149e804f4579216968e50d50f4e3c3c5ee651b","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.1.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*","lib/components/**/*","es/components/**/*"],"_nodeVersion":"16.13.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^7.0.0","@popperjs/core":"^2.10.2","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons":"^0.0.11"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.0","vue-router":"^4.0.0","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.2.0-beta.4_1638022528075_0.8574905035259148","host":"s3://npm-registry-packages"}},"1.2.0-beta.5":{"name":"element-plus","version":"1.2.0-beta.5","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.2.0-beta.5","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"ef4498c2d051a122cf5898189f4215129bb368bb","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.2.0-beta.5.tgz","fileCount":5451,"integrity":"sha512-8KNGsNZ6RjVJ7kmxq/WLeTBMhVxSjfaGdW2QdcdXz4km1MgxbyBfdiNGVQG4XH/n+hbtLFldCPw0mVT4vkncuA==","signatures":[{"sig":"MEQCIEsmgs2xVKmBHAFdD/5W8v5PyJCExW+eGHhwdfpnRdrGAiAcC+neSpX+pKle2YvmFPx75e2e9on59Zjn5I8W8I+FhQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23931844,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhpzKSCRA9TVsSAnZWagAAFzIP/2a3+wR5upo0+LqNoaO7\nAmAsG4TyZkaXGd8oA1UYRSmWVf3vfGAyx1JU+teZN12lppimH9OgRJ5ZQTaC\nRuPdBIGIEDqma/QmmrTgwiNM22BG6Ziq0J44vDVYkiMRhQPAf/wMZG2w23CO\nD0tudMzfjS+7eCId/a6jB1NJKcfa0F/HTv8miXXymc96joQa9lKVlcpy78qf\nVKTgxWj8k01NafKr7Q6X3TiOO6zRZ1gSJv3J2ghtMwS92nDkqJJ9Dz+TVwbd\n+WbsYCxyPahI5DlHSiqNQBGRr8yQ2R5MoWrw49zbWZ3LWE6arsfMVfOLul4X\nUmccGROrdaPVAvuKgTzFZE4YW2c7Cg3KY3syMS8DsHQuWhxZmhIHByUOZJBB\n5aypxqWYSjTp2bBNDe9PrHRKH7i9bTQ7m+vguraTNjcSss6/soCR8cSUUvkS\nlB4+i2YV7R8hXS+dEDBNRUXOiBgLT3iykVrgrAKV1R2l6hgzXtYcRBFhCFob\nEzuVgVejSCtLBt9k3sshgS3mIM8H2fDh8+hPityxWT902G49faEp+xxbtLkx\nhAsuvVcdJRU6vy3xMJgfphuhEUuV4ha7/IF/DaTlyoX82aPrJdSQpK5wAX54\nGDSDKx/GsQHR/Pyv88YBby4mp1DwMyw8zTSNgkao6LT3lheljH69iNKEEd6T\nyuQM\r\n=vp7v\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js"},"gitHead":"05e6b8288eb184b87228a513ac3d52e6e3fe85e9","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.1.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*","lib/components/**/*","es/components/**/*"],"_nodeVersion":"16.13.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^7.0.0","@popperjs/core":"^2.10.2","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons":"^0.0.11"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.0","vue-router":"^4.0.0","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.2.0-beta.5_1638347409745_0.17246105577160686","host":"s3://npm-registry-packages"}},"1.2.0-beta.6":{"name":"element-plus","version":"1.2.0-beta.6","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.2.0-beta.6","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"9fa01a06950eb0380f0454cb75aefaaf5b81b043","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.2.0-beta.6.tgz","fileCount":5521,"integrity":"sha512-8EdSIR/5/FHcSB8w1diAh+gJMHgxIvxuZoayY99k6taAR1QyEFHuPTgFccZLopJ1+iP4UEsZFz49l57qS08Utw==","signatures":[{"sig":"MEUCIFJd0ZiEVuYG+ZvQ/9qRbG4X3mYAc39sRy7mA4pl5Y3aAiEAkZlYdUx9oopiTBDEOUJZFH4WvYgIXMXP+R6wnpsm+j8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27223749,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhsz3vCRA9TVsSAnZWagAAZ5MP/RBPl44hf8OMQZRmPwMC\noDvV1iGJ8nu7Tu5WY31pj9waUGcdr7X6p6adaLmNTU1mEOSWnSqFXbdUm5X9\nyrTYp4ZRyHxQIkdaiT8qUQbFErBkX2MoQpa0ae04CJNw32/UJOZqTnKBi8qG\nOO8Z5YAIJrCI5SluoMoDrA4TfCGS87C9zlMUf2iYC09q40oZQHFFjPU850Vh\nZQvvg2a0Q6cXCjJIbHWOpeenB2opoGm2NWAYJh9aRZbrSzgVzFDmMlSqELNK\n3HV1ldoMshzkci0lgsCHEt10+ZmHmhvte7JmhX7+rfarmXVEqZ7O+6OpaH4J\naj2R9SCogzLhsvFsthOvKsUwkBjZXm5M/ULIvNB5q3iNSi+CqJJOFLbnvxdR\nVQWW0q6N1JsJCe2myV8oOBsYT91E0rEYIEazjZpVh4sMKHAGeHMJ97w1BoTL\nxMU0y0ac8eKZ688dY9BQAZuEC6uQGm9F2yHxxgzJXg1kBkDMvGjI8kP1MxRq\nuZ6AoaSZuqIlu8rtafVPlQWmWxH5v9vkmYTVlPGvLSjW4FW2c+HDbW+cKsdw\n4d681fjUqNOaDlmoNvszYmAjl8iUO8b2UTHKrADqAWD7xVHn+H/6/L/0896E\n9HVEflCEvGnObnLqoshpVe/RIdBBija31RjkXH70m1+OixTMHliO1RV8RyMh\neqai\r\n=m1T0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js"},"gitHead":"9fc869de527919a4ae091189835733940ece5b6f","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.1.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*","lib/components/**/*","es/components/**/*"],"_nodeVersion":"16.13.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^7.0.0","@popperjs/core":"^2.10.2","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^0.2.2"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.0","vue-router":"^4.0.0","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.2.0-beta.6_1639136751092_0.31129364174909213","host":"s3://npm-registry-packages"}},"1.3.0-beta.1":{"name":"element-plus","version":"1.3.0-beta.1","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.3.0-beta.1","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"4df67fcedb0c13d14c9f54eea7b739109f5df49f","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.3.0-beta.1.tgz","fileCount":5494,"integrity":"sha512-q3vMaKElPpuSTeIF7kuDmMOE+N1YVCCIG3fshXpz6qgjnxPbgZumVM0qGfhr8DTu9JxRbBoDok49dqtX/BWn3w==","signatures":[{"sig":"MEYCIQDrQ4y8aWMGK6lBxonzh1P5L02s2hXiJhqvjj7ElxInpgIhAM2rByME18axqKMMUDs04m0GMHyUNwM9VTwsZhKLIY4+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29184255,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhzoG1CRA9TVsSAnZWagAANDEP/jwADd1hPhem8WlvJwHx\nahggnnBw9AhZrNmK2Ay1e01hE4Ha53V2DSoqdIeGQOioefffoN8k9HajGehI\npILjHqEULLsVgEis3Hs9qCHfvOeXt1Wu1w2wyo7mLEUrEC1SP1w1/0XLXyqc\nUXIA/ZIs5NyjeVSFZPY83bP/EhUPoB+85c7q3DCR2riGbvBUidSrofEPLXuh\nw0oUrksIsVqn7UnJAjhtio8h0eQMUurz6Mc45m1dOxIJ4zTxD4MhloO6tl2v\ngsQ/95AMsWSzA/0JUqTJMSMGi1pSfrC1xCNrwNHEKaXstJqX23OqpTukQaPH\nNUQrKogKc4LhWHYdt31AOzawRF8ganQxXd/dtObRMp5ouQ8yiXQrTKjfzycj\nwJj8QaAtjq+h4G7byyDonuoyiZBLyI0qjntdxXLENYwxhuuF2fsWdhac64QR\nlZMb68Zp5KgqfDc9kkPjd6Vd2raC2gbDTpyGG4qeqwqVYz+v06WQDlZALZim\nSDQKeODA95f2PyJRxAmC8/LBHmO2tsDr/1ogI6KQXNfiqSb6k9RmIY9oeFiO\noQju2dNU1tKUm0jLOA4ByHfBeLDgKKQq9RsPT/XlweiXwcJp3lTZNcnoRNzz\nlBVzIDaZfG+sqwO7OA7vpfhtm1aryEVpjqXP5+yLLwLnBOASyzsC7vppsK1X\n1sM0\r\n=FJsC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js"},"gitHead":"cd9296920f0d39b1345c25447c1b1d46dd5b7ea1","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.1.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*","lib/components/**/*","es/components/**/*"],"_nodeVersion":"16.13.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^7.3.0","@popperjs/core":"^2.10.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^0.2.4"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.0","vue-router":"^4.0.0","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.3.0-beta.1_1640923572789_0.14228776642180785","host":"s3://npm-registry-packages"}},"1.3.0-beta.2":{"name":"element-plus","version":"1.3.0-beta.2","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.3.0-beta.2","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"18770ee73a47f35f99834306377017bfd70d3884","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.3.0-beta.2.tgz","fileCount":5788,"integrity":"sha512-8FWS8soDPCUHNIid60gzvLCbb9NC3rXAPgaRik73OQ0wO6M1KcdO/Lc7zQY76JHxWsZWo7ne9Jfz6dXQJooDuQ==","signatures":[{"sig":"MEYCIQCn33ElNsDCH8OJdVgfmYM8a4J9f23xoXX54gb753dU3gIhAOTzACrZ08vSt8U2ahZJmiPk1NnV3/09sxXUM6FDCYDg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28995229,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2YNtCRA9TVsSAnZWagAAoN0P/2mrSCI2g7JomY9uFcVW\n9vZiSz8U1Q0W+SUPmlHo6uipq3uRoev3N7YfbeMOU8vAxrCAY8a2nxG34kUa\n92w8N36elZ9MAyPw+UPmuQA/TQg9Slf+GYTVmgPY7/JvrYWGP3256Z63O8QJ\ndoIzqWsPZHGdUyqmT1uBG5efp4MQ6qNZQGonSWBBFVYaO4x7dPt4BeOLzutZ\nZg6LfzrgYkAkuEAeL5wzvmV9hIG/Inl/t8qtAlOqeF8K5AeT6nh+NvMLY6sz\ngZR5RnDqE0m7Zc0sMbVTAN8IqCrasFkj8FgsgNW7PC9ZTL6U889nrJ6khOZ1\nUrnvkWiglAWF9FtNtr5Gtrogi1Va7Vf1wUloP6NKIL0oIid//VNWqVMoqNFP\naGtUZ/UOjr/RStc4UW+ueyFM9hYxAT1LesU6y52/KByrUvomMiQTa+QVS3NB\n0P6jWseoXx9vrhH1a33rD0FQe6W463o5QIE6Lvg9t2zrchkEEUt32h5gjH7y\nmY14VaPzFCDxfyQNKJiZfmwBTTbgYWikjBYLiozU3blnl0sbiBnJh9QbSfE5\nCIo7GsnTDpOmzCB2B9jqOKpmUQaZPOJhMVPR0C5XdV6FXgB/cxvDhtB2ZQQl\nHn0gMh0rcqVo7vPec9rWvBct7pMy2j310VriF9KQAxcOgwHK/yurBq3h6XO7\nurN7\r\n=E1hF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js"},"gitHead":"bf954348d304b3617b2640d8bb4bff61d12411ce","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.1.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*","lib/components/**/*","es/components/**/*"],"_nodeVersion":"16.13.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^7.3.0","@popperjs/core":"^2.10.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^0.2.4"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.0","vue-router":"^4.0.0","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.3.0-beta.2_1641644908814_0.47010160533168577","host":"s3://npm-registry-packages"}},"1.3.0-beta.3":{"name":"element-plus","version":"1.3.0-beta.3","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.3.0-beta.3","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"db98a4483098d2e9889eab27cb1146413cbf14cb","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.3.0-beta.3.tgz","fileCount":5788,"integrity":"sha512-OeSAfuXpZJAdakC9hsQkcBrQEib+uVzzTZ52EiZZxQ1ArktxdfONkQyZ/KTR20pfr+3gla2guhWseg60md1sLA==","signatures":[{"sig":"MEUCIF1kA6wHH/FspymqOI7BKFVgmNMx24MUC3n40eIS2CEoAiEA3ZvpcN4saPHne2SRfxuAtT/OuAr40k5FDByvuvDnpQM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28998359,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2rz0CRA9TVsSAnZWagAA1g8P/19y0obtx0VtczDOM5Bf\ntc4lJddUy/v+N+T4+04Bul0rT1m7zHJn0EhIFTk3Y1oMSezWdq1p88x4PAYs\nhgZRPfQS2mrSo8gUr8VOOsAd5eOZZXdS6I5VENa903I3GPf6owe2VqLNVAaZ\nNBViYtEqLL4Vqs7ClngJM1VUMHX2OFHEdXIa/cq6kRUFvCrtgM6m+vsEKCl4\nolczkK/fJt6ayrROrZgkNWQO1bGCeCu6n4B/qRiy1vxGQoLMb8sSP227otFm\n9les3sMCAf1nzxVyN8m6hNhyflN9A/wA/SFro0W51WabIlSFiT3gvFVBCH94\np1tNg3//a5sFXIsT4bpdutbbYfUE7yL1tECFGR3t/yFY4aam6rtFL7An51kI\nfVtNXgmtJ9natPz36uTQfQezM/mt49/NcdN/+Pu+BJVTGrdI6m6UkVH79bws\nFxvvKmq5tzcrXauEg4hJUNNLw4d+WLTRVsjBYJAI2moqHKIqiGS6XGQnFFMp\n9i44kX389J+cMhB84IpKcOQ4d3hSM26DIBKYAvQHvGB0gNcBJ0GQQFWqS3R6\nDHn6On1LUO9pd6tfxEkiB/8s9/nyi41ESYYCdE3cxI9S/M6nQ3dcedI5Zr7x\nbtFHYU8QFc25+/+99h0Bfdy5pSnMlzzgySThjJEZLNXZj80HMUvZLASB2mP+\nul8O\r\n=ghdR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js"},"gitHead":"55bb5a7bf2ed008914dd357874ba01ce2d721b35","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.1.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*","lib/components/**/*","es/components/**/*"],"_nodeVersion":"16.13.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^7.3.0","@popperjs/core":"^2.10.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^0.2.4"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.0","vue-router":"^4.0.0","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.3.0-beta.3_1641725172353_0.35999314146718464","host":"s3://npm-registry-packages"}},"1.3.0-beta.4":{"name":"element-plus","version":"1.3.0-beta.4","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.3.0-beta.4","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"20928ca5537de7b7c3590d8780fdcc5e71b1e772","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.3.0-beta.4.tgz","fileCount":7244,"integrity":"sha512-iCJuNJBCWUQFiK6YVPkoxRkNppPqMTeFGajdHYVLWC+pbshmHaRIBriYOF8ytFW8fPyEC77b8JlSBG/tHiLsyQ==","signatures":[{"sig":"MEQCIHMCg23HvPRIH37ryddryziEFmVEpi6/VjJOTdYLw5vEAiA538NA/RS2FqPI4KQSFD2UZNEPryhWfqivuQrhBa6B/A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33955080,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3X26CRA9TVsSAnZWagAACPwQAJzyuFyZR/4rzoAkoWA3\nSbl894xjZT7S3Ovn68fGyCyHPbxxGmnCy9hezi9BT9+O3EIfCGd3ktgaOkPi\nOLb5FyeYWm2n1wzQdbadiXjbACnoKel3ZUoNyo+EzE+mXymINpoqAT/a/jKU\ncTzOgLuwyzo7hxCF82KhQ7mriNQtwCOZoGJvTRZurWXHoZlOekQ7fUG+/Adv\nvDikP0JnPTm7t/gjNIHWq84KAidlXIMkJAkhwe3iL6/hnR1ysSRUjiZTRYzb\ntHylPnZd/hShABiRgQprdV01IRcwBn93n2JwU/kMYyT9rQPScTNKXAKmJwbD\nvEmejxK6Ha7gH/41v46FeL3VDeVVRKsKOmZWfC4q6fgAQ8QdBM8yMh+KteM8\nQse4hk/7MFefSGZVSmu61DxbcXH+m9O3fr8SmyQqQUInHjORNEH946m59of+\nGa/uzUhw/X+iok4PmBT4WIchS5Oi6JqGEDKH0Hl96ihKAo1lUmASm5+r8GO/\nA/g1eAywHmHEO3MK3IIauw6XGiv+Hel9mhVbeqiNgvA78EIJgxUqtUBOUOBw\nwl9l2eCPG95+nL7fIG2X9mL8IQ6dsFY+vKXTvDbzX1La1aAxZ/4/IqpB3E2h\n42kUmlu1mhLrYDWVUFV2c9Ds7ZFPK6leSPS3I2CcHe367RnbbBgbYh4pA9vO\nMibG\r\n=uDOm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js"},"gitHead":"82568552d1ef3413b1ab8c7cbc6945904ef7477b","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.1.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*","lib/components/**/*","es/components/**/*"],"_nodeVersion":"16.13.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^7.3.0","@popperjs/core":"^2.10.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^0.2.4"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.0","vue-router":"^4.0.0","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.3.0-beta.4_1641905594074_0.899512821593573","host":"s3://npm-registry-packages"}},"1.3.0-beta.5":{"name":"element-plus","version":"1.3.0-beta.5","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.3.0-beta.5","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"cb753d03da1df81c67bf59fa0b83fa127a853622","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.3.0-beta.5.tgz","fileCount":5788,"integrity":"sha512-su0sHN4ZkR5ISyP1McyiqY5wqrgZgKq0El0lSohjvjEWR3ODlgdmMfQolV0ZqTXKlO2mS16hO7nTFwX9PvZNTQ==","signatures":[{"sig":"MEUCIQD/YXbRDXI/eIOsPMUExh7Lfn+bmJpfUJZKXZmqg17EDQIgYNUAPNTzFecSyIxASMC/AueRJR29hoHF3gX6LQQvPy0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29019891,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3kYLCRA9TVsSAnZWagAAcoEP/RMePT8gL4dD6rzh9Paa\nmqPIYKo3UnKTkiFK7hPDOHcONTbQamr+6KyAsoZCu/MLxyIzEln5vMPDMN4D\n3rVB7SCV4CtqVpyG9j6DX/r3JZUI4hmtYf6C5/JlXQEDZ1NmwBiqpwDYFhRA\n6oezJqNWY2W6qvxqxznwsu33uMfiAwSsUBU0mJEtTTFiFiUCd3tIf4XSc7YK\nA//CDEYxLFIm8KlhdvLqGJLkexa2A9TorArHOUGposGUyZ2eGqvD3LgD33pQ\nkLsxem+43Uu3YMXJEDugI1g6gbL7RFGK5cXOR6kA0r7P7H1L/Q2IKhdOvml+\nTD67+9cw78H9rWvEsmJPExDIlt7AIb4uYP3ohOCjVLQPvPOmaPEOvgjtKclX\nR9wUnU2fqD6t+XT6Ir9/cZgsbHPbJhf0gvulzYF9xrprTCKbSQZn/adUQzby\noDBwAeEjAsK6G3aydNdUTYGfMFfDx/Cu+FCC5drOAZd2M4JokpF7YJjKLYby\nnWpiTGDxK4lrWtoVdsx/YalrleDwIzF0v5qoRKOYRPx1Vn8nDS0mPRF7unGf\nqcX3hDs5q/9Cjh53SJ9YE34sjnT/2nHidAs9aNJUtB4RrdiGAHk49x8XMdu6\nzUIAI4aWRi+w+48G1dpIsYV1vOHFitKoXydQmoJEk5KDJdXJhVcvyjvx0mah\nRVTh\r\n=066D\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js"},"gitHead":"520ac9da855763f31f98b793fff7683cff8d31f2","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.1.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*","lib/components/**/*","es/components/**/*"],"_nodeVersion":"16.13.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^7.3.0","@popperjs/core":"^2.10.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^0.2.4"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.0","vue-router":"^4.0.0","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.3.0-beta.5_1641956875493_0.9020571971350093","host":"s3://npm-registry-packages"}},"1.3.0-beta.6":{"name":"element-plus","version":"1.3.0-beta.6","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.3.0-beta.6","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"4d7e4fe7593fded46fad31c8537b8b85055de127","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.3.0-beta.6.tgz","fileCount":5044,"integrity":"sha512-PB4h0VTo+dxUgP5loMrewUMO92jxKaMqI4LmN/9xrFUKKm6FNrQSZVHEPPb8S1xhECTLthTh/SciEJOh3rXDeg==","signatures":[{"sig":"MEYCIQCBJaLV3ACEsz/nUoxKDbIOIrDw8VOffILInw2KKFdp7QIhAK51FJwLITcd0grmDmtiviLuGTUXWkY79TDbJh65sheX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29211190,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh63yoCRA9TVsSAnZWagAAI5UP/jvODlJ/FcZWDjl7iAuR\nkqoQQmG7LPONRoJ5H1iW3JxTAfp+xL3PdQjEWyLlWVs1nDqH5lHGK6x35Dvt\nw27rslY5HgpEdxbff0X9hCNsBsDyvquKG6QRjbebCYGFwsUfXF2tFFd+ycHF\nDm9VaUaslFX0E+9JBdGTUD2x4e+JQ001lLkNbI4VtHLboFbwcFYbLmep3/TK\nFcL3HLjoRJqhsWS5C0OI0P2Li4C4Tdiau2H+Ji4SFwBhECx0/NxKcF/leBXs\nqOimPgtyMRGGCChR1cKxCBRwmdA+dvPYS6Req3ERooRNpZCtEf4jFD75fWgC\n3qGKaJovBDhGPNnJ492Gpif2iTcZDMNY9+UhldqiCAnUg6tYCfNML1lI0tpn\n1cCLKx5c/6gfXVP9aZXVFHzydvbL78nh86Ytbqt6qD+nGwfivAEms5sTtiH5\nG5el+J0972xLS+Kiw5uU0T5cuk7HZQgKRDelnlqk4ac5PTxJADqP4M6gk+kx\nPtBUx3MkPdCniCFIRc77SYSYiKL/l1/GgkfOD5yzx6oftsbxuhq5O3/x9MYn\nu25wjNE0K18YgSjMi6BTknMq8IFTrwf7OUmPgLj2X2AW4G66Zambdj/LhvNl\n3PfGmUxAMai+Jnjk1PAzAun15RMt/kxM8q+ueddhVbl3snNqJzUWXTD/CSa0\n60Sc\r\n=5jYR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"cfa6b42f5dd4106d33eae149c0427cfc51124080","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.1.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.13.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^7.5.4","@popperjs/core":"^2.11.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^0.2.6"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.19","vue-router":"^4.0.0","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.3.0-beta.6_1642822823711_0.818090753268687","host":"s3://npm-registry-packages"}},"1.3.0-beta.7":{"name":"element-plus","version":"1.3.0-beta.7","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.3.0-beta.7","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"8c589d5f6e945dc36181571cacd617f93d93f8f5","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.3.0-beta.7.tgz","fileCount":5044,"integrity":"sha512-zrkw0OqhJG70oA+O796HK0IU1KSHboQbHcSeQVqhWLxmv/rEHOzEAcRKKeOACQFoJY/EU7CKJVjlV+Gaww1ccA==","signatures":[{"sig":"MEQCIGdq76xlMVLa5x3W86RsIj/V5+9sloWv9HDu/6Sm1y0oAiAv0RXTByon8mTqMBNYfroSEYxWs5LFv6jrvwoX/sPWpg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29188101,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh6+6ACRA9TVsSAnZWagAAvHUP/2+7IrmzLqBRA67LWAAV\n3gWH3g1gpS9UZ+EKZ+G5+54SaRYlPXDoe0riRkozlj5XSRfPHMx3qA1dZ5JE\nGqYTqWxn4a+ls7arakzMpk2kkfr9You4kKB2P+XCqAbwUMxMtRwnApEF7qLr\naDpBOlRwIppIPALesuI7sJjm1wcv9RkCLikxRoqzRl7iBnVMqOHUMmS906l3\nJYuqBEZcasUgOO6HvWTFPjEJvWWddK7Xij26cmB0kCINgA/IN82alz/DZzEy\nwzJIaVJrtKMGSeeiENDUkVJT91WDea7qLAx+o5luORv8N6CrCIs4rUWpxtQ1\np589zujFRB6kqhnWcrJRN7+f9TyAEoNmUCQxGpNPuibAtnVIT3poVUpWRwfy\nMD96IVuPR6cHeJiFoWJ6B0AcQqdBehYTE8dN0MDLRPcRcroooC6BGeUepQAM\n9YBC3M5GkdUbOdhHZH1U5H//h28V/YkFJCa8fkNkQ9f3NxFsy5EXcEmQz44B\nvZSZa2rX0aCLu9YFSTpjnr2YsMP35nyH5LDkGyKavrsWGbsp0Ty5MiEOXqd6\nPVoNPJPKzOZFrNehO6kpt5ygpLgX2dJQ/eU1RQ1ZRZhCXSIGKPGWLhkwX/U8\nRJJYqwGNLoaUNfpWrQIE4xJRRBSJjniKPw0ApmAz1BdyOObRvrErnqBlTZYS\npeea\r\n=Ds2f\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"4e95e80f594665d53933cb87243c2042526a1525","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.1.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.13.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^7.5.4","@popperjs/core":"^2.11.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^0.2.6"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.19","vue-router":"^4.0.0","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.3.0-beta.7_1642851967746_0.7130735693251913","host":"s3://npm-registry-packages"}},"1.3.0-beta.8":{"name":"element-plus","version":"1.3.0-beta.8","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.3.0-beta.8","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"1305b1b9bd6ca7e029a85c9173c848f7ebe29260","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.3.0-beta.8.tgz","fileCount":5044,"integrity":"sha512-PRYzCKKqHoQ5IWpNj0hxPyjjRhaKlQvN0WNPeVrIe4OK7SxsV2Q8lfwIwn0GDYg8uYANTytxkg0Bky8Y+SALOQ==","signatures":[{"sig":"MEUCIQCQPOon40/gqBhRjNW4t8NRdxcDCd3KNMWdvezZdmJsYgIgf8oIOr8NoIm8SMRimHZ0JovHf+PRe1U3p/hzD7s7qHk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29034997,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh7s5MCRA9TVsSAnZWagAA9cgQAJ26D1lTexu5uMMeoG0B\n8X4VO5MWvQOkRV6uaA2QkMplN4nSbg4Qs/M3f1nJARfqxH27Yxsy+RziaY2v\nIEKsgi7HyeQi4oYqzKhFLTA+7LZei5rGjp9yvb84jg6AioaOMbgutOwHhU9R\ng4A/gw53FCy8cQdtZpuxHUrXSnkiHyZrsQ2cwPmhoKcTBK+ncsqPNTazlRZQ\nfi3ho0zbhmxhR9dwtk6RVOcEuojEd9SoPHddN3xq6UPZ2FlNGIdXLe6O8QJV\n3Qlkgs9ZbhrMt35gYoGj79FsZCAN2LzDsGdfg+Z4c582w6a8Glrru/X/ba2M\naxIERIw1dUS16lKCCs9KkxWG9NBESFR1H9+rvRZiFOZiHEHu0Sp6BWSAE2JH\nk3fhD2FjDBYekjCxEuwXN8fWMurezMxSwTGUIxFjphKMylWa1x0ojRQjFuzW\nhPyv5NCYThZbWm1tEwlsLcuXFpJlv3bDY++XFUiol4QNf/+R7vODb7Lw/6q8\n4FK7rgvVWQHwR2SyFtkK8pcMgMin9KEkFxwl7wR1dVqnXa/hATaxV3qLWYKl\neCIF/rhwRpjNjS1wDf/YBaTifqOvJ6a/VqqMSR1LQVjEfzL/Y66FQYShZ4jh\nL0jxIqtisc3XcJbvs9UVb3gouv5OV+Adf4549LJt+D4m+BhxC2Yw/N2zbKE2\n/o9X\r\n=yCSz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"ef3148a0b05c1f20d7b9991176f22f52ace9e1fb","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.1.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.13.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^7.5.4","@popperjs/core":"^2.11.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^0.2.6"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.19","vue-router":"^4.0.0","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.3.0-beta.8_1643040332503_0.5432202604317709","host":"s3://npm-registry-packages"}},"1.3.0-beta.9":{"name":"element-plus","version":"1.3.0-beta.9","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.3.0-beta.9","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"eb182f30b56003b5b89b2174e6f78b603e246364","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.3.0-beta.9.tgz","fileCount":5044,"integrity":"sha512-h+I6VVtJNwjVkNhfhXp2oCYjgBN7kWQ2Y6nWzwc0wiphAlQDhGuBXAGj9eYpf1uOrMgIpFFwbRhvK7C6sOJsWg==","signatures":[{"sig":"MEYCIQDH4ccHe0ZIU93vB+DVMiSYLVEigrhidPgojkcx9YmsuwIhAN+LFoMiL/OvZX5AiG1D82KcgQ7gEmP+XiumoR2OVape","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29117073,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh8AUPCRA9TVsSAnZWagAApVQP+wT0FdalwBFh6PXC+Eon\n4WkuCCE6dmkP0Z2MzzCZ1Hlgzq1SfTG2OzyZO0xinTz1jkSnGM8/oIi4s4jR\nYg3y0hwaJw0Heb7p/YgkLDLLjVZ+96TjVQWRiBFKU9kWE1+qLtFgmbWwov+4\nFX7kj4fvoOfaAZsy31girSYhs3suZWXfCiVVXsdkgwhsZs8mHPXdKevru49Y\nnN05z1rkb4v7YNnacSmcQjM4ec7GrpouhieVqZ92SF10rbqREIIrrXOzWwWc\n77R3ChEGSnEMAPkwRwTIOkQpRPtzZiambgltK8xWE/uWSZgHSA3tMaDQeien\n8jIXBw+H8XpriwvKgT0Yy1aI8wtlezVBNlA1jEie3jnR3bPz0u6zubdW3XMy\n1nxD/CsUqzQEmWU0/DW0oUvL2zsJ7jWPzxxWmciEK+JrYTtdG3JOn8bpF5d9\nBb9gtJ2MfV63gPssEFRcup2Bv56kVxwKPPP7IjvDZcULyMLJQloQcCRL/Qwf\nAC4jHahcRd8ZC8o2lUr8Ae6jFPM+dp6tSm0qjO7iRBPcV68M3Kink7NV1+sH\nIVfN8l44k0pWBiBoGIREbhkf5Q7KSc5e+Q6xu2gPuh24QXXWpFG3yAapDyaQ\nruMQjE/ueTMW5xLmcTvw9i+u8YVzw9CLiJwiZ+1CglXX0Wvo/jGkW0/tjOvR\naMKx\r\n=uhfP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"d68e27c1d90f34997a3f23521c42cc1d3f257680","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.1.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.13.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^7.5.4","@popperjs/core":"^2.11.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^0.2.6"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.19","vue-router":"^4.0.0","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.3.0-beta.9_1643119887456_0.09872567676612465","host":"s3://npm-registry-packages"}},"1.3.0-beta.10":{"name":"element-plus","version":"1.3.0-beta.10","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@1.3.0-beta.10","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"10dd01586074c147df1b7902fd4d76b50f16e3cc","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-1.3.0-beta.10.tgz","fileCount":5056,"integrity":"sha512-uPcre5liDfYvGbfaBDN2K7K5x6egBFdDQz0sv2cupcqzepUQoTMpq+mdTnHXzHChHhVwcLGp95kLYLL9yMkT8g==","signatures":[{"sig":"MEUCIQCN+xjkqeY5lq0ttWTvvlPV8hvlBiJhkmb0IYhIbTx7LwIgDaYqUFxoYNPvVzsmfnVy/Lz3dym8YN6ldWncJvArVGE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29196127,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+AiBCRA9TVsSAnZWagAAuNEP/0C12XipD0UD2J0joaf/\n0cqs5H/nWwebZ1WG8gk3VgJk+XUnabUKdFDT+Yn97fWlYnpYNM0FVXsDe0Mz\nGg2LiPncrd+cojp9fEwKfW+Ily/re6q1y59xPM5yFefKOvxHqwZf/DBiF3rj\nZE+kltFSZBL5oWsuD/PeZq6ytpgRx3LAgjUzqo4chFyNGbCFwYQ7iJp/tqwJ\n/6911fCmMmF60vBevxuvW26b39O2kAZV5bJOAMx99EZMT7N2eEjm9DTBm6QM\nAnBOBE0D0lvyXeZzbFGWthJDuibUqYLFgUwCuOkmOSI2lDJOAxEZiObCr+qx\nRbAkoslUIOmbPDY/TuqfeBeNh0VICCxc8AKMNtpOZBuNMUTty3MSUzf+ptWa\nzCATA6girYaL0yOvOlegdNHPzPfQWqEcU6NLBC3FzqreEu+rFwkk1DB7hctu\n/bfqhAxYx2irLtykSv+NQRuqEHfENPeqt2rGZwztfrZIzhiJE/TuF0Ylqd9L\nN95q8WpfZulpys643qtsAVyyJ4p5IDry9H5xB3zRSzA6sOAvmXK/+3zYN0CD\n7eJyqjKdIFrlS4cRyOSKmAmN8Q9g3YD9UbNCdcmE+NkAnr9BuZ6Zgm0rtYEl\nz32j3cVjNZgohLgPhNVQcXtNEt0vH0vtCardq+r3CY7UJdA73KIpvnZ1HOiM\nOeo1\r\n=3SsT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"41a3422bd2d571feb5df21fa92588bad0336b91b","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.1.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.13.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^7.5.5","@popperjs/core":"^2.11.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^0.2.6"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.19","vue-router":"^4.0.0","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_1.3.0-beta.10_1643645056988_0.018923239096731992","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"element-plus","version":"2.0.0","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.0.0","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"4ca935c29ad862a86b02e0462ee4c27a8b6331e8","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.0.0.tgz","fileCount":5074,"integrity":"sha512-bLt/Ahn0ejOKuYA4HR3iuGLHTt4pRzQZwCx1G2BLHEJLZi7CfLiFnjZMhGhYNkk49ir4JHtnBJTgLhNNaKALcA==","signatures":[{"sig":"MEUCIQDkOg9voQqMIXgZMAx3xRojHOizmZgJVTES4ry9bCGOCAIgaEtYjnzVIO70sIBlpyUKX5OagI/RipEcB0pBLQ8gUsg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29307449,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiAI61CRA9TVsSAnZWagAAxlYP/24TQ9s0I0CIjGermQSZ\nz5Dw99i39kUR7s+zyzOoXYl0TIQAJAD9HwUPIATU7s1HvoDOJVQF8R4MrA2i\nwf48fm/mPnthOCcCHXRrR3jFkPZ+TMSLyl//txAPdUTiqJkqh6w3jEf1LIez\nicIvNX+6ZAjts1wVoNUbX23xgb0fw3BZ4PUBUsqX8Qky6Se7/1scHrE3o2WV\nwz1PIzCcrJqP7sbu++7x2h7TQeTfYkJHRYqPzzi1gCaVYklB78V6eykVElHZ\nWPQWFZuX/YfRliMc18DpdPm8TMjOxgHlXGvIZqQZSE8v6yNhoCVaT98iHIJ7\nIOdXZCKgj1+2+AGn1vqI6JVyvhrq+NgVAXrzCs3M033JgScBBUIfT5raNwI7\nJoG0Qghp7piP87Ok6KiVHKjXQr1OUtIBRQATRHF0sB89W4ajfctv0T+csQo/\nWekoIWSU0gK11M9B6jdhjLBIEkFQ2jmRvZN2olA7EofhN8krfq+bQbHExbCo\nfCXlcSs7Yp6thyZttQ9zPnJDNXowciCfer24FmGreV5f1GOZVP5A7dS7eiUA\nhiqJFWXimejxStAWQ3v0B9Gg/IBdzMH88dp4Ik33Y0er1g7L3skg4V7gx8C8\nyePLl3ebc7QrGI39hO1VRvfMG3NgevaFac0DTuaG8kbRvXD6jiIjWqhPQnj4\nZR9T\r\n=L8ed\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"1c8df2c930a48e9fbdf7b2101555e1a525ade683","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.1.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.13.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^7.5.5","@popperjs/core":"^2.11.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^0.2.6"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.19","vue-router":"^4.0.0","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.0.0_1644203700817_0.21285812492564493","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"element-plus","version":"2.0.1","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.0.1","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"0ac58a45454bc17558f66b477e0233bddc18b7be","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.0.1.tgz","fileCount":5074,"integrity":"sha512-Cdx3JhbMNGwVsU12DUewIltJ1hUYVSgx2iBB8AuNzzOxAqcxSA9e7p2lfNp8oCBQeh4ThRSaOkdLnJyO4mS3qQ==","signatures":[{"sig":"MEUCIEcLNRf+t83O3S5h/i/3mInurdAidzBEBsoLNL6ufjSNAiEAyDcRWevwfFBE1Ykd06i71fo7SXLMzbeBcBhFu4wAj1k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29309401,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiAOZHCRA9TVsSAnZWagAA4kQP/1bBf+BvVjkwRplf/NUg\nXjIul6gMQbsveYsR8eappbYbN5giqxkerJ7Qs0i7Pp96zx+1j8RSDEOdqZY2\nkEBKrRryTk3L8MT7yz8I9yVrQgJTSzTbACdt5kxaW84CK+KAHOZEZhywewr/\nAfweNL/sYki+PlUjFKreIagyvrf68GDQkl49KWSNB7HZ4lW0mWw+TFE3SdSy\nsVCTtk3bJlM0Q0o9s8I7Mb5t9UwKGJyfJqth6rWplMzn/hNg1qiOmj2n0aCr\nKVhQVZe/Rk87pKL8DmN17KW5K8o7nnRzrqSyVlcaYf1/tlzExTOnTCz2fq0F\nasLPwEOf3ei7kCySrNeXTrfbJbiIAXcFwD1RyWwNLkjegzeGXwBzq7zoNjYa\nfzkMy9/f1CoGx8vTF1bOfxPsGXluHDv/vn4eyTghkXiENNSHpjBCOYNZr1BJ\n6K4dybmp6wN+2IRow7UySfhkmNvmtIyQV1hMKGEM2YQagJLOOZAuJmM2nfxL\neCOQsL0mJTh/xUvN15v1veQoJcvkHEOM4hYUBgtQSzxQgt3AgJp32IoD4UOz\nhXAT98sItATIVc3E6R9xL3ScwLzMKN+3wLF0u+YK9qkTqsWBBymj0GPGgIgH\nWF0QEDT48g619BObLM17qWoy3a8b230wTkwWUeXCMpR/w7wx0UuNNS0fz40K\nsGKG\r\n=UW16\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"cdebd9bbb979aeca55001564528da4bb4b702889","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.1.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.13.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^7.5.5","@popperjs/core":"^2.11.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^0.2.6"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.19","vue-router":"^4.0.0","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.0.1_1644226119713_0.009657018114483051","host":"s3://npm-registry-packages"}},"2.0.2":{"name":"element-plus","version":"2.0.2","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.0.2","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"1e4a29fbc6629255b96845a99202773e774223a1","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.0.2.tgz","fileCount":5188,"integrity":"sha512-URjC0HwwiqtlLxqTmHXQ31WXrdAq4ChWyyn52OcQs3PRsnMPfahGVq2AWnfzzlzlhVeI5lY3HQiuB1zDathS+g==","signatures":[{"sig":"MEYCIQCP4j0L1Q1NWR+hZTKLx4o48SPuGQyfcPJ/6AA67AQBHAIhAI6whufpF7tH4j7fhvps0YNznOpTx2V4p8veJvbWIdi2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29074155,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiCg5sCRA9TVsSAnZWagAATp8P/3IuhPktySKcbw7VZM46\nnqyTzBNVCq8Eomu/PcCvfsUUSkCRVVlEZlCvEJuZ6pdZurzTiB9leOy2MhnJ\n4t3dvpvaapl66fjSjoinfLCZ5Uswd2f1hN7z3g2Z1BoaZprKwQ/Y8Fmzofy+\niRsyre6dp6xFOwMkS2JOE9K7CeO5rM9+XMUQ6AU0QL1uD6O2sCAQHfvRfm+T\nQBRRls55m2KUPmiuLHR/jAoime/MDgU0cw+61mV6aV+9a8sGng0VLWVUNTR/\n2XH/XrZoaymctjv0nvZcTG1XY+8Y+1FCNXdYKiHvQ05ni2LgaEvCbt0hNeYE\nR5w3Kdu0R5tW7i4nAgtVunGJiZh9dytU8UZ5YHRTZV7YgiAws3KQPf+ZmVCj\ndBsPE8aKhtA1jVQzODEWWEpwgeky4hJ/T5+vTag7+nAysd4PSfg6DLL0D2rc\nm7JcI8PtukmLpYNmIw3arv9JRDO6C99HGuvGl31LjR7skBKFO73xGeV0Z0/x\nDy6KY3KfD0oEfvCSCErlooey8cYZ3CqOATe5lBIN5ARpyTWbgTQK0pIwS+Yj\nxjPY/ybVAGQQzoVPkPXOX1foJqqCM/qCpxQoBJc7Rlr6HWGpI1zzA3Pg76A8\nQygBKI5vSE1nnI2wqAHU4buAE6IIEk82Yyuje5BibbO6qE7PrRLJnxc0PlXl\nd7OA\r\n=7X7Y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"6d5c24309e60f1fbfab5420b1e30654f1a5e72fc","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.1.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.13.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","lodash-es":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^7.6.0","@popperjs/core":"^2.11.2","lodash-unified":"^1.0.1","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^0.2.6"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.19","vue-router":"^4.0.0","@types/node":"*","@types/lodash":"^4.14.178","@types/lodash-es":"^4.17.6"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.0.2_1644826219996_0.44811148637258036","host":"s3://npm-registry-packages"}},"2.0.3":{"name":"element-plus","version":"2.0.3","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.0.3","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"e84d113ed8a1604b2656dfb30637c1ce0f9da7d2","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.0.3.tgz","fileCount":5207,"integrity":"sha512-k+b4V4sGmgOpOYjrAWyp0k+N1mVaIZQ9LpbXWvmJNzE+j21DYOe9m1zGn5mFDPgeLOZcUS7QzzwYAommhwFj0g==","signatures":[{"sig":"MEUCIQDcCqOhqCgrLGHJJpMk2KakcY0hhbrfpig20R37VpJO4wIgV9e/xRSfRl+/OGuJxJu59uK9jNFEtsZejtzYpeP8ARU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29127281,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiGJYAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpo+w/9Ee3+0Cvs6qsIjtH7Ad7987ZuXqoNIaikKhIy0lRijc9IeE0P\r\ngozKIe3hDlhnPs1URtOpP57vWj8Hd4kgUc5smLJl644t+s3YJIi+XoyMenEH\r\nk2VWxHiflTI2WGIHo5pJF6S1wX0F3M7+kDNDjTOqGcXYfYcjxB6CkEA3g5k6\r\ndshoQn5bxeayMA0OthvR91ULIk2QkheT2EiJG7cEU0ITgdo4ux5m162SM1oT\r\nnd67EsbtuVkqBt6X/qh+L8ivbboIEgByna3xD8Uo+FeRkXIcU0vswXnbKPQU\r\n9VDfXLD/gLDc4MNGql+kw5/TL2K1VV/E12dEfRowglrRHOjCtLlEB2mx0xuW\r\nYIdSFHUGFPTjzebAMGq2mCtHGqmu65hYQo/GC5CUxwpwwgOn6DJYACLK2JA7\r\neAx6pY6w1ohW5hItsnfhZdbS8uSEplwQ0gUFA6Fb8W/Xvpn/p/2+RPXymn6C\r\nwDYHa2lID5TaVrF4KVOlIvpXk/eFPYKKAhBuflPajlHqIGijzMmwh0zVpQG8\r\n+CC6I7IyFhBL+fpzxBeLqn9FTuMe7aGh4kJRJhDdYDUcZR5ZnylZtGOOMvIm\r\n8wDSVHljltWjWrhK4FdAEXIIJm8njkUXCk59ZCXeHBVWuqMICOaKzmFiDnj2\r\nE7tqattIQwTwR0oqFN8BpuMeZB2FKJJSMQU=\r\n=m76h\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"5593e3399660ed68e39744700c195cfc948f5396","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.3.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.14.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","lodash-es":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^7.6.2","@popperjs/core":"^2.11.2","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^0.2.7"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.19","vue-router":"^4.0.12","@types/node":"*","@types/lodash":"^4.14.178","@types/lodash-es":"^4.17.6"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.0.3_1645778431714_0.5735512384470185","host":"s3://npm-registry-packages"}},"2.0.4":{"name":"element-plus","version":"2.0.4","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.0.4","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"2f67dd153d61764f703663fadd1754cd6d548ae6","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.0.4.tgz","fileCount":5207,"integrity":"sha512-g/YT/uY6zbNTAl9jL4zT8WRSf/4KG6GB3Y89MCO/lbglHsps5sdDFohcuOb8699BtIXkXsbOzdwmbk9kDHqHxA==","signatures":[{"sig":"MEUCIHqeD9cfo0fT3eRI93U42iWp69DCsoeko00xfBy0yvxdAiEAsNQKb29tRcMbrt54t94cKfY5J51QPfR5Jm1aAIEXpwU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29134014,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiHQHgACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpxnA/9GWeCa6Gev+GHPPsFNIci9q2peIZU41dIUnYDb+pgKjLnwjaJ\r\nz+Rqgsw9tbp8AtVsmaLWxdw4JKp51e3nZJGz2SpAtVfG6DKz/EpLFTtFwUGX\r\nRga4dcPkJIngj40uNHDIJahzxYdVEm1z5XaB2Yd3PFGKxic2WL627FqpJ9zb\r\nqRrJPG+hn83hvQYX51Qz1pGa3ORKZzGnu40Ghsln+Q/yQgoTIFey4qwWEts8\r\nvWnfVCTAhj2SdZL+wTYzLxG0Gh/U4ZBCMeobBBlM7veobj476q+Em0H3Ye4p\r\nDrI4/FnpYYjRwHetuc8c2LEvvr4ICgkqxkOGvtN+zgZWXDUhpetERqAqhVUW\r\ndISXNyI2qgNlCEDEImuRBb2SL2OV5jgGF8dIlFhrQwCWULYCzEHlhBTpAkk0\r\n/9z67pdQnfO2jaed7sdx8VNIcSU2MUOiZKvq89vzMTFc8It2UILVCtKtiqxZ\r\n8PWWEC9EjXBb+ABifVczEdMulw3FgVB13K8tet9qXNBPwoVUQ/Ohwj47u+VE\r\nQ0YQnsbrODl2jhKCpKx1VwuKi7NKXdgxZkjCOwq/6EjdieEQxJ84bw/jFWLL\r\nfyWtN5DYy/sBdHxVzHfV0ztCGU6qPnWFM9tl8Au2JwWMWQ8tpS/0PJNc+JSo\r\nthYpqs8JU9ObCwl0ikb4MUn8tZ7otV0ITmc=\r\n=1quo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"f374e6440500c4cfcafec15bad270c63e121886f","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.3.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.14.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","lodash-es":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^7.7.0","@popperjs/core":"^2.11.2","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.19","vue-router":"^4.0.12","@types/node":"*","@types/lodash":"^4.14.179","@types/lodash-es":"^4.17.6"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.0.4_1646068192572_0.978450279373648","host":"s3://npm-registry-packages"}},"2.0.5":{"name":"element-plus","version":"2.0.5","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.0.5","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"325e2ac98a79312564846830467d4b6e1153137c","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.0.5.tgz","fileCount":5249,"integrity":"sha512-zeyICvdDHSs7nwOGPAfI0B3y1HfH8o6IcKI5OA5JnHxildoQHqMycB0PPdEXAewzrsuCNigo6ihrwD9OuhDLHA==","signatures":[{"sig":"MEUCIQCld/eskRX2HUuqv/vYVsTBD6CAyS2l1/MRfPfvij6RuwIgelZcjNbkhrn0cBT15nROM35tS7JhKOXyMWZ2nxS/lIw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29775801,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiJKCtACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo4aQ/5AVhkCJD7YVe72ZcUHjNZnsdB4jRksHCHv1OnrcjqbW9ls8jW\r\nVhI9rPmPHddATgPUmcWGdPi1QkPYjSVuBe62AAz2Mx0OoSsyS0TmMmt9RrYZ\r\nzqctiI8S7mDKDCHueFu5QQ101hMI9OwODVZ0RkJxYHT4PdiHP6Up1Mh+XgTi\r\nHHgp66gkveQcVrkcoD/SFntiSoOmKDiElrd8u8iew4aaUu1IJAfHfSZW4fqu\r\nYvI9mWQz6Td+tniX+DUVK8rbz/QTVQlCdVMt9Z0u2IstGiNM1jb+TRWNkzK7\r\nDUa6pyOVjzPfBcW5KheM4nGydWHigHYlCAJykbD8vSVipdCBUl+NCKhgKCQy\r\nz5+WGe2ADRUiFdSAikGOJHls+XvcdGh1blRQ17i6aUVNR0mPFDqMrYJYZ6zx\r\nDrxW/oYKtHT0Kf41TSbZd/+oaYUkVdUtI17Z53SA8ZT31fB/vyKUpAX3/ej4\r\njJr2UJe6I98QBS7ibku2EZLqd4wwj2kz0vq0A4jW7AKpdheePlkQnKztMz2S\r\nTwWZo5gJ/FUWT/ubEIKevbbDAcJ99GPxPfiyypYGJ9uYwZQhmKS3hPUqJJ2v\r\nd7BvvBNc2XIabldKkqyMVj0kbXtUgFtZ84t1T2CyTLnttYZ4EZRxooY9HnEd\r\n1V1Xq3c5O0HOtxHs4UanxQM2sZ71XrnolyI=\r\n=ZvR5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"531188ca1031e0ec6c326034e37dc2e42cbc6f7a","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.3.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.14.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.7","lodash":"^4.17.21","lodash-es":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^7.7.0","@popperjs/core":"^2.11.2","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.19","vue-router":"^4.0.12","@types/node":"*","@types/lodash":"^4.14.179","@types/lodash-es":"^4.17.6"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.0.5_1646567596817_0.6529675145772789","host":"s3://npm-registry-packages"}},"2.0.6":{"name":"element-plus","version":"2.0.6","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.0.6","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"c996e2804e9c4710c3bce94faa31f5b2a7ac2883","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.0.6.tgz","fileCount":5295,"integrity":"sha512-bh9LTFGLhhm7jJPfhzbwzO7y7t5uJ6dDFf/u3qNQYWEqkZRKvNe1uE1ugq3tQFNWs+MXMKG4tkqzfFO01O8znQ==","signatures":[{"sig":"MEQCIBgjo0OJS332nQW7w+z/y52tvuDKF6l6WAJ78fOgGMrJAiBGwrSQISdymkL/+dYUX++rS+ZP9pakQMg+GMgOmB/O2w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32223132,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKzydACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrAhA//blVQ1j9D1hNMVgH7BnACy/ZEczN5/IYdLvbuk4+ViqrJkJ2h\r\nkDBTBqsdNlVNwlmrWNNFymgXoJoZQ6gTGJ5B2cmReui18A9qqlZlpcN+ju3G\r\n2TyUMSfyW6PCCkyO3TfNzw9xDS3CLmlAXReT41l9j2TOUwYTh7Qke5ROkbFk\r\n28kQ/NxNgkUAze2JIoYO00OwWqFzz4rcTVSTiQ5fxCdyGE70Bocys+XUXPG4\r\nljOgaw2wwgLM+pyW4VAwG7LqhAlA4nTkO+mp/+p2EfaEkzvL53oueWKPClMe\r\ncyXsyc5OrRO29GZbV/aaOWofkhkZRl8WYkd98PROe6RMGGIjUxF2a/qC0SzE\r\nvONhcmtoDwHiiVqirVppy4Q5aNvvRmUk9lNRxWNmi2qGIcD7zIxj5IAuMzRF\r\nAESI+RQyNeZ3KdB+n4s1Ic/ROsVrSvBIceTPFxuSD4CzHa8Uu+X30qHWHjMa\r\nc6L8VxGHjppIcPvFguII/p8tlFf8UnXtvcqu7G/0GwUn9HTsezvCDXw/U50J\r\nB+CSyh5n0324VA4n5NKCEBQt3URf7CeR8VE4kd7+Etb07qWYSJWAnaMgcqhP\r\n/k5jNnfdBJkPwhQXierlNcEFw9rC/6BYePhs1ktoycfi7cxYg44OwI5bbkal\r\nJIWNPLnSZnC7Zpb7GPCdCH9haJbtBrGF96g=\r\n=ZIwt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"2d50c88dbb75031cddc33e83b7791dee8395d0b4","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","deprecated":"Wrong build outputs","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.3.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.14.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.8","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^7.7.1","@popperjs/core":"^2.11.2","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.19","vue-router":"^4.0.13","@types/node":"*","@types/lodash":"^4.14.179","@types/lodash-es":"^4.17.6"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.0.6_1647000732713_0.8686468264281864","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"element-plus","version":"2.1.0","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.1.0","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"ac46b4e0f92c9f028b43bd561b7f0f03e61c81cf","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.1.0.tgz","fileCount":5273,"integrity":"sha512-PQM3LMv5qKf0sS/k+PXuBcmKl1Eb3b7fxKPyFHZ6eodZcNykbEMcpLZefQkvmDr6calVnuQ7TUnTm7Tm9LJXvg==","signatures":[{"sig":"MEQCIA/6ekiUjpgeUwgVEdaBKIi5q4C7SY4e/0OIOd4XrDa+AiBPKASAjQBB6IY5WbMBkyAJh0kxge8RbMD/AyLrm6zupg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32022093,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiLI+aACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmowmw//dR63rHCiSKqw2UuT89FxZ1Q0Y3qDfH8VkIuc2gFOSh9vCsCU\r\nAeNKWv8fYpHHxro8yS3PJCEzl+5+9QURO9SdFo3b+yWPpV5Y7cfWXJwU+JUa\r\nRL8OL3d67P49BKYXd612zdqQIU0kglNcaSXhXVoTmvU/5Kcsu3Egpvm0LMsH\r\npDAU2hes2ZktHAS99HTsG3LJPb/aVvkgDULXsJBSX+E7Md7dob69pA8H/Xum\r\nCSL5SxohnAEAV1AntCosvAZ9L49fuZ9OxSTo7sK838++UOvM4zSl46GJxLq2\r\nVF/PUVFvBUd/WbJ0qZJetMHMb6tIFbyIo3LaTZXqnUEZHQIQemt9EPZ8G6ji\r\nedqVVrd2jtduRiaUx76/pLNehuj1QHFaizJZQnh7aMUFFRsU2HpKurpGZfpX\r\n7SfnTTdAZNIshtgtL2dE0Yd9orXj+2Hut34dYwoe4JqPtB6hozUkzbyi9zOQ\r\n5yxumm9s6iGcWZK5uDh4Pl5oPlNYmzpIJmi2fO4Nb4gLcnMEPud3ABN8EJJl\r\nTMBeT2tvIokuCcTw8caaLpG1uwnXrj1/BqhKIMVX0AK3LftcT3mNLwNFSyF+\r\n7dgurghW1VJ+B9WmpU3yOnvpNVkcEwbacy4iL9lQ0i9sJ/Trqw/KvSju+Csx\r\ntt2oUGs2YMy34bkD8Y1bYP+0i7QW3RoIVT0=\r\n=DD2+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"d6690f8d1a4dd95ffaea75e0d69a71a70217dc50","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.3.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.14.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.8","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^7.7.1","@popperjs/core":"^2.11.2","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.19","vue-router":"^4.0.13","@types/node":"*","@types/lodash":"^4.14.179","@types/lodash-es":"^4.17.6"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.1.0_1647087513714_0.8719145333806222","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"element-plus","version":"2.1.1","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.1.1","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"b06581e3e506d63a4c536341ed45a2813dd300a1","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.1.1.tgz","fileCount":5274,"integrity":"sha512-XG6XBo9tLYzfW1MNTgGoBOoPGnfMAkFWJSsCaS5M7ekOCszC4HKCj4OqIkusGemLvzR8O96S06swzQwzNBe2uA==","signatures":[{"sig":"MEUCIFgkVwSnRqsutWCBPyzq9R0RwLoZjOnWxigLQSOP+9XQAiEA7qxcqFWVV0ebjH1qLyOb4Aw7f3006YgCl8y4YVQs5QU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32434812,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiLhJPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqUjQ/7BG9xdhGUSu20fQyfriUbepWhMcDdcVWPJ5Ai+G9bHJPbVfy6\r\nZ/S6RED8Nilck+or02FMC403YBgcT4z6vP3/2Ddzq+MI8IiJU3aU4CrP7Ves\r\nmsWEmWw4QjfzInWW1ZOvYk6fZwhA/3IocQaMn7EOyASQNk3m8cfYt+lOaFAG\r\nDpn1IxTY2y7PV309fD17Ef1hI1Z7BlDCfLdeLNvoxeRLYdO7bT5MOleqV6cG\r\nvyKyZmeDfwTaJncyQTBNyO7ZW4LrTxrx22wv1H/jk52UAjJo9w2waft+Ag2K\r\nZMXifdsJUHC9kiro8IJIcIDGA2aMIErgUjTtYMfDp8dMnz/bpxs8dRJXc8B5\r\nvHgq8CleLzhINz0jMudTouTvkXKHFdW90FcTShSpVjDnG2Rz7XE/JwQiSZrP\r\nwIQdwP9rVF5gqVh5lfaBSxN2jL12Ixi1ThXICiXXstiMGRtZ6/5rbkzO5EAo\r\nGOkM5jCBK6WxDOAKOYcNzjW6DnHMFpTMjuCwkbaZ4NWTxjbFyzU9TuW6EROi\r\n/2+dhRldEXKnJQh179XxR7qBsioyF3Kg/+UqGZvUBxfxSS0ymORHyJLmMZzg\r\n9QxnNfKhHK2SKRI9EZgEL9JHu0oNqDuIEcxZqpH0aBYsJwQQZe1RquWLcRN6\r\n8YYeeP7pA6tBKsFo2eBKND6rJGtzSI/TeZ4=\r\n=/f3R\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"094cbef4225100b1cb7ef93d45cc0f94bb99b7d5","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.3.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.14.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.8","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^7.7.1","@popperjs/core":"^2.11.2","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.19","vue-router":"^4.0.13","@types/node":"*","@types/lodash":"^4.14.179","@types/lodash-es":"^4.17.6"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.1.1_1647186511466_0.992785562606811","host":"s3://npm-registry-packages"}},"2.1.2":{"name":"element-plus","version":"2.1.2","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.1.2","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"96c4f2ce50491a7a70f9cc16c70a4e2635de3d75","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.1.2.tgz","fileCount":5274,"integrity":"sha512-aG6IDgfEEUTBNbgvtvzOvmM3yo09/E0EDq3l/kDjCUec74q5rnVKvLvKjAVE0CDxVjNZzXd3BghRaBly9HJ6aw==","signatures":[{"sig":"MEYCIQDQvBeo1AavY1Nyix4fw6y8NAjMkI3Y7Cqra7PSrsEdxQIhAM3Nkzab8mbhZtQbKEVoi6jB9iU0UJ169vyaeNincIFS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32429346,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiLziqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmofEA/+IL/QMkmlkwM0xI4OGkUGzOnmrv1rSxTepzrnOljIp5GzTRjg\r\nmuSFoW5Xv+yNrrCL6z+TW9wtYvKm14hxZnCdBRNeG6Jj8M1yFhYOL6Y2tbwy\r\nrClbygyD/2BFr7I+b7GEjS58BnYufVKNw2Ptp1Iz6gGPModFlRS/BV74S240\r\nx6FZodwib6nZ0Opt0bWFMkELsooXMqeYHG+sj56yyKxJ4uAQMWPMpDzJoglO\r\nDPF3Hb8GY0z7bsD7+AlNIquV/vysb/etwd2PpvQHFwALHYSQ8r8MLJeeHtMB\r\nue/9NKGf4AiTQIQNt/VI5xdgr9HGxmJxs1dON1e9ajFUgTHE9TDIPj9WV+j4\r\nOPkTQbwuRvpaJ2zlHRHrWsnTo+w+MYdCHPmoU4jSy94d+nW6eMNXkAHpYmZY\r\nfLA2aCIkK3kh00oo0ycCMriYLxV/E0r+hVXdXh+AG6Z+QqT9uPK015i0ywjH\r\ng2ieAVNHJL8aEVDNeQ0MpgxxLywvYB1D4/E2xg5ambI0O4yQgER2U2Ij7h1c\r\nMp2g7ZsugjcX1dK9tjW834x1mdWgCavPBPHcElHv8Y5/LI18zNqikyiLeAGv\r\nWetREQZ0guOmzYUXrVdwllRbAN3JPLg7ydL8Byt4hZHjSW4zZTkGoQuzfmOt\r\nzcw/QhMUTs6v7hOFcDGeodxLwRdy8iZ/PNs=\r\n=Pbkw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"5cfdcf225e0e5d6098e2e733b392a81812f3b6b1","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.3.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.14.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.8","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^7.7.1","@popperjs/core":"^2.11.3","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^1.1.1"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.19","vue-router":"^4.0.14","@types/node":"*","@types/lodash":"^4.14.179","@types/lodash-es":"^4.17.6"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.1.2_1647261866231_0.7510827637991859","host":"s3://npm-registry-packages"}},"2.1.3":{"name":"element-plus","version":"2.1.3","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.1.3","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"8fd05e8e4ade911c749c79cd4e76ab21631ef707","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.1.3.tgz","fileCount":5274,"integrity":"sha512-DnkuOEo0qAoeXftkV1tlIPbEf4oF7oGKpOwEpi7aCI7SOI9i3OcYws+A/6HV0VFTmz65hqxpiskgWKMa50S1FQ==","signatures":[{"sig":"MEYCIQCmL5xpPaIa7pTBjoV6SpFXpYh6xwHhRz4q8Y69t6c40gIhAOu9tQDIgZubOz9glzFj7B2F+L/+h72Ca6SXb0ZspWdP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32446777,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiMIiuACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpSSBAAjFGqT1/j/ndqcj8cRCGOT6eejUgd9ESkixX18TcGxY7o23/w\r\nOOg6YyPs9JsRP7WP0K7BzNwfgeWKtP2nOrkQE7jnCJuch+5CPLKwRCj0G/tV\r\nnoM1n6+23bPTWDYTl9fjMqQkEaM07DRkQwMIQhNAskgCxsqTa7EDjLOEVZ0F\r\nE3DD7rEdTv08kUaZRmqMTmoNY3k67NuSeFI69TnxJvvDn5QhBIoapAwooLXE\r\n33IuI71FcHgWw9gJFpUxt+sIKrtF5bm9jRCe7WSTgDysneR2SWtQX5OdmdMK\r\n6Hn7mYTbFpytnhKDYObnzvhYTOjUGCRsqj7ALeLuQJ5EUrcr4yAmbrGp+/FG\r\nZBO/sqlbX0ohEVa9Wm/B0Qxh8ZU5FEsdfd8/Pd93UW4GyiSfLyw7vZh+Ak8M\r\n/CAUovgAu8ucnntaf1RP7PEmJHuNs+UQKOOkwec7ZZ+66sIOzrSW05DaZvyQ\r\nugmOEWfBstFbUcuLsYGFggSSks/bGDeHcbowmFnY1r7Zvv0qt4/q7t3WEdhG\r\nLdbKGR3Fd1i2CecvUJB5LqAP287Q8nU3U5+QjfQt6cB/Ep6FAaSE5OOKk+NO\r\njXmjU9CR5pyAhIhEw7KGwWCuoxm2jysfJVnHH/IEZbPorTTikbe+JKEqwP/7\r\nFnxyH9uM1LfqtMZG2NWItGIExTnz+FOUm+k=\r\n=DDs8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"41a40006f3245d0eb9160643d8aef48de222d83f","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.3.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.14.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.8","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.0.1","@popperjs/core":"^2.11.3","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^1.1.1"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.19","vue-router":"^4.0.14","@types/node":"*","@types/lodash":"^4.14.179","@types/lodash-es":"^4.17.6"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.1.3_1647347885983_0.9751577858900238","host":"s3://npm-registry-packages"}},"2.1.4":{"name":"element-plus","version":"2.1.4","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.1.4","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"52ad532d5c7c321822244bd12ff5c03ba6e22632","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.1.4.tgz","fileCount":5274,"integrity":"sha512-pcwgDbKUrzyWbixYB/zIbLPLBQ/NPGPJnGXJ+jYozUSthPW4SuriaUGJKgbAE6PDBAtw3IodiT2E2GbiaZLxww==","signatures":[{"sig":"MEUCIQDqFV50o0XQ2zi0fvNEKUXFGGkj3KL8cdCBz8+N/YclxgIgJ4h+FZ0YAg/gHvBmCO8alVRbqQD3Ma6mJqDuZjjUa2g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32459940,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiMfh3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq2/g/+MR/DC6oYqHYCvOgfyYyIs6J3bop43psimdyfCDbjipRmd1hS\r\nGA0jEVB7OEIdSFcSusvMsEBDAemOSDIOjMrA7Jg1aU3xpJNLtW4DbiOg+VMP\r\noRBY0jbhlI7RissGSDOCJNDow/yEoOYUEuuL/BXnwAPZ5pv6xOpHbpjnKPQc\r\nQVbWnaHSSWTUWo605jHwJnXU+hDJNr+iJOUV3LUSoAgFksJ+9gGOoP3cvS+u\r\nJWbXDx+yOixjvf7QLTBxk5Q3wVMn0ZN0OHjl9xjjyFljO1zSjlYRl+Owa9Hh\r\nqSpYdEW+bIYX7n4QUOyeEm+MVs4TVKoc59fiaV6TkYVoZRjDki6lWLwJLTUU\r\nUBaYD8+a36y5elHtRMXkvjqjMpOfy9gi4XpcuFrCVL9BPTT5v4RpEX4FP4xL\r\nGLxujG+boQc2OhTu69bsc8JEwZGjjImVcRbc1gBhKGZ+6KbCSWLEfjdbOhXC\r\nNp73vrqJv2obf5kwLtHaUdWrTjoIaK2dr+61RaCw5TY3DyBDRlkBRTCLn2q2\r\nc9qoUCUCZlBEWN9UGSwgtnFtxyy3jDlqGU+5TzsdCcL9dGXKXrpb4pxi+v7n\r\nh6H9uqO3UO7hK0xBlUOq+p42DFM+nI/rHOYhS8hQrWVy3Xb+HatJMyq0Hx7V\r\nUpfEYYHRhu7ai2ZuaAGydJEGgE0WiqoJ1w0=\r\n=HHrx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"41119bd4ea63e5da0631bd80145672fcb5afdb83","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.3.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.14.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.10.8","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.0.1","@popperjs/core":"^2.11.3","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^1.1.1"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.19","vue-router":"^4.0.14","@types/node":"*","@types/lodash":"^4.14.179","@types/lodash-es":"^4.17.6"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.1.4_1647442039478_0.23380821805245033","host":"s3://npm-registry-packages"}},"2.1.5":{"name":"element-plus","version":"2.1.5","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.1.5","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"7bd8e9a3f7be0ab41cb5d836f03271606e05a2db","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.1.5.tgz","fileCount":5316,"integrity":"sha512-QHssDDY2uIJVmfXHkPU7DOxDMqlb2UCsfpJaYRrAYpZC4YIrbtQCcw26A7uRZogDu+ampAaZzGQqioDLdKNkiA==","signatures":[{"sig":"MEUCIENMUruO2EQyzAICWsiezZ5ttOSLZ5Qrj0/kL2EBtIZ5AiEAj3ctqKMg81igwqaBRzxoGgZPp9MWK6sZ+AavOcBU1a0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32951626,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiPm+kACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpzcg/6A+dClCCSERV/NqTmW/eBcpfiCexbRj/EsSYcttnFhCMP1V8S\r\nk5SE2fzw5AsX1+Su1qqq8zcDd4E2FhHwv8xDiBDe00KF9YTWNj0eWIk8HgPu\r\nNLMhm2gR9ht+nJ0wpIXdi9Wpx6Bdj6Rq1NgShqOe7FDlVUQoAO7oks8chl/4\r\n9PMIDLvoB7NqyZgsXY894rBx8yBmGy6xeYTCaVltvoSb4uuGJzcAKHqoi4zi\r\n+FGobUh6CwfXajWNNiZONn76C7K8Sa/PYtplmz+pL+kYASMy6vS1GQt0hg9V\r\nm2lFT+uC2RV96jf/yI3zFGeHctP7ALatwgFcH/+GIaOZOmhcv3HSI35Ayksw\r\n4YQ7aBdlP6078dfv0x/sNHFG8kSXrCLY1bLT21wjhOPRS9g5i4YqZ08ckiey\r\nwyjeZtX+R9GXL/1FE4r9fynhOYp4xzuZdWmbGSHiOUx62Ey4v2odlklacGGT\r\nc6Z4AHXtmJakbguIinVdp2y1XFnYM3I3nRNEnyiamdxevoqwc0Esh69xlxaS\r\nh/QuWGUk1lObFINMSotqczA0iDBWwTHAPU5viY1Yt0tS45/JIXyx//DphDS5\r\nlH+gyEcmeo2Y5isKInhn5BAqhp5r0/gIpXd1yb4CDmn/d+JYXQtXKM6WMxkR\r\nNCQcGR71+4UQkQBdDhRXc0RVlPuZp50RKDw=\r\n=P6FB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"f99b93cf396e72847cce64df7ad8bafff5aba992","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.3.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.14.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.0","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.1.2","@popperjs/core":"^2.11.4","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","@floating-ui/dom":"^0.4.1","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^1.1.4"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.19","vue-router":"^4.0.14","@types/node":"*","@types/lodash":"^4.14.180","@types/lodash-es":"^4.17.6"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.1.5_1648258980347_0.31462275499326675","host":"s3://npm-registry-packages"}},"2.1.6":{"name":"element-plus","version":"2.1.6","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.1.6","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"e2cecbd8132ba0845f59e5225cefa77d2f29f876","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.1.6.tgz","fileCount":5400,"integrity":"sha512-IqZoD7xtdfZZsPMfDDVfv/lxeHL58o/eOoaGE4T3bc+asWrOlLnG1ppRHFVyh+hVIgyhDoBlol2NOL4+h9Jfkg==","signatures":[{"sig":"MEQCIBh+cyFYvJ/r3/V4d0kpbeSY2KBGuYqPumYuqaQ4ZI5TAiArTh/H+dx8r3UJbH2JEGc+C497DrhXXvSbwQFWSnTOeA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33187064,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiQBsZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqJWQ//QHgaaDv58JR0anyr+FDqnRSaDdm7OQqwaLe77QIBySloLRqw\r\nhL+GLsCDFljKnw+rzq6eVo6o+rFQSZ2lpUeS0NK7alyoUXK1fDYZoavsbKgJ\r\njCaFu5bGECUiztWe6u/phxl5OgMM4gJS6jnNafKu7HemWrOpECjoS1VAhj/q\r\nkqAM9tIKtzFLp4BMqotooZg2G9shrApux24AR4GM2Fnzu+RWedNkeyIexPyU\r\nuDzo0y8h4V5OkOvSiGtRPjAcAVUWRBt5xUkNH5XYzAt/bXr4Nqe5VatBENR1\r\negZalYysrUXRUGUfCCHlCwDnp2sY6JjmIHEsN9IUocdf3iZq9gIC7OLhp1eT\r\n3k494S58SEjwZEjCCruYq4G3LlNvOlJHHYCTXNu29Mhqo6V180XCAsA/xSfM\r\n9tbmgPSfBXT8bpO+C7xA6adtYF8uZfqVDpN9Kfyq4UUf9udIGcnr7x1P4jUz\r\n7O0vlkwz8eV1iXB5C4zzUtf12fpgnI+WS5708/cX8or0dt7oeRWgODu6JbNy\r\nkrWZJpmnMSUtbFH3bXF0tkBB+R5OLaE0xcSVCWsis4t0ezWPTsqcJaJJdN4X\r\n6GnI5Lmq3kUxs/2Aa8Y3SygGf2SGJR7Kd1rQwU4pQxJVNCVSLgvXGC7c4Gr8\r\nwv5EgZuwq6l8TmLTGhNMZF0rs5L8OlIsnKM=\r\n=NkXu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"312a07f39537bf6768a8b7b88b6f4759ede659f5","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.3.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.14.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.0","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.1.2","@popperjs/core":"^2.11.4","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","@floating-ui/dom":"^0.4.1","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^1.1.4"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.19","vue-router":"^4.0.14","@types/node":"*","@types/lodash":"^4.14.180","@types/lodash-es":"^4.17.6"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.1.6_1648368409497_0.536431107083092","host":"s3://npm-registry-packages"}},"2.1.7":{"name":"element-plus","version":"2.1.7","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.1.7","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"329226c5de5f0407c60e732f447bd96a1052d1ec","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.1.7.tgz","fileCount":5400,"integrity":"sha512-jamE9F/a2rfAQJwf3kLaDfWXxhjXuAJAvrto76SLJsJfr3iIUAzC849RHdn6h7tNJy9Yanq8GlQAsdBe5lJmrA==","signatures":[{"sig":"MEUCICeWE3NfvtFgjPyP5hDRyF5Qh9HX8H4d7BECJ//gTNssAiEAtzkbCHLEpqF0L+po3qwPp0MS1zOKuf02QETHY3omaVk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33188735,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiQcsaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoSdg/+P6i1M+Vr9Nxhchc3790OSD4cQXRcpQSY3QSwglsTRy+oJnL4\r\n0R+J3BLZEVVwRmrcgvtwzwzyvzgPtg5UWTew25rgFYCifTrvNfT7oVhTMAI4\r\nyLHFlNGSnwhjxjFeGlzvPJd1j2k5phjdyv7Jnaa9eKQP1eLH06O8pFQ/LJ4+\r\nNioiYpZiUeDflklWqIL9Jtc60/z9saJ6qS0cKtKLgAqHpHg+VHBIqCw3fKgh\r\nx/dhSiuhjoGTvfF+udF8AgLOgSEbhKahnNNOvsWS1GXBHdfUbIJnUV8ZEUoa\r\nXZjipmADvoNzEvnOtESgt/H5UEGS/haSux/vIUL1jLIehQQBbso0IXj+uZ6e\r\nEw/x0iVBhNtJsZfH9uKcpgdtLpDd2CbxOHg/zirKw+8dvTSVb1h5meKeKZHf\r\nORLbGvS/zBaAV1o1Y7+ivjt79cn46bZmkaWH27HgKoLji1DSQE+eS+VilUK/\r\n8sCSfjBb3eiUBWriISQ6W5/2ilNM6ljlLYH3LEXCweJN/siJ5emkpd+XNPLl\r\nSSfKOxdRxVF9fehwRrXyOyy4pv3O/GAfRcKDZ0XLBlTPIEIcqrRQ6ZQYHUhe\r\nPcWhDbQLucXizD5DNFgpyW8WjQ54CJqIpEBDzRkvBa7z+SHh+/Ax5w7afszE\r\nRGp+ryBKoTSbum0m+K0jPZBCRB8G0psBOZ8=\r\n=GQ0B\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"fc3514f667e8a9f3938c2045a910e50679a43d83","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.3.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.14.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.0","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.1.2","@popperjs/core":"^2.11.4","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","@floating-ui/dom":"^0.4.1","normalize-wheel-es":"^1.1.1","@element-plus/icons-vue":"^1.1.4"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.19","vue-router":"^4.0.14","@types/node":"*","@types/lodash":"^4.14.180","@types/lodash-es":"^4.17.6"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.1.7_1648479002447_0.6806755484150635","host":"s3://npm-registry-packages"}},"2.1.8":{"name":"element-plus","version":"2.1.8","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.1.8","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"4480e47ae6e7c86763cc0cf383e86f749f748526","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.1.8.tgz","fileCount":5458,"integrity":"sha512-hwFtzw0R5lKMhWf3oVvSU/ucfN8RiY8DRaRWo6LktX4RlWWA2QjKfDXtISBi5Rb303Ny4I0Sgz0CA1Fd4Z2GGg==","signatures":[{"sig":"MEYCIQCi3sSV9P+DjtVTyTsBns3zqG1JGoies3LmG9litl/WkwIhAPSKkgCKhaSFnzJFk5h6Qhy2JGTi0Ek15mCwAuY+xmMz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33893805,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiSaD5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmohBw/7B5PXYEAzQ52R4gdb0HFEtid0W1cg16LqANJdSC087xIa8ZW5\r\nEf8LHxv93r8Z7aH/8wBqSL/ProCPYaTLRESCEm/+ZJwJMKm7DPgIj3a6t7im\r\nkqzmL6un5u8haADQuvHPIsDBAEQ0R8V03aOBZb1T3nSsyGwnr8hQbz7FPU7e\r\nWTZApldo7ta8UAWWPIp8L1zURWtyu8vKR6XhMt2qUO0IAYKHgE1tCXLDOIz1\r\nkOvLeoajd5KejYOexQZIeGMSMyGCMYwwdhMMXeBdEt9KsFUTiKXrdusZ91Tz\r\nrjJ2LzlrKCcReJDrNNEm74V7qEiTZVYDKRkUnzk29Kw76MyhQrYdzIxqJi5o\r\nTcMajRpkBAe6GRdKfjzxKm+68MsnmGUzMGHPtqFwxJKZ8pRiM73I9CFG3Yjl\r\n/+J2yi2/fFTWDKLBIc18/SerpXzfuyuKS43KxbKxyAN2TqFxEUq9D4b1/+UD\r\n54JQJBJm5cJjuLahbnskX2eH0haW10mVVrgWcJj0A+5YFzxoQQWmVv8ZE1wl\r\nE0nNC1a4otuiWJfRuSlUnqgmrWd/ezhQIbbAgb3fmn+4xfKw01detf10w1UL\r\nkkpUFwOQc0dgCg3hb4gXPrBQmqqIoTduube25OMgQU/Kejgw6kmvBV9Xseqj\r\n41njfDjVxYYZ2LCF3Hik5VBhinFzAneTp7Q=\r\n=N6kc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"abbf308b822d2437670af7ccf47d6d22450dde6b","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.5.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.14.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.0","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.2.3","@popperjs/core":"^2.11.4","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","@floating-ui/dom":"^0.4.2","normalize-wheel-es":"^1.1.2","@element-plus/icons-vue":"^1.1.4"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.20","vue-router":"^4.0.14","@types/node":"*","@types/lodash":"^4.14.181","@types/lodash-es":"^4.17.6"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.1.8_1648992505223_0.5029948993222828","host":"s3://npm-registry-packages"}},"2.1.9":{"name":"element-plus","version":"2.1.9","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.1.9","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"8779b041f32f871eef2f903ee4c0da16dfb13024","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.1.9.tgz","fileCount":5560,"integrity":"sha512-6mWqS3YrmJPnouWP4otzL8+MehfOnDFqDbcIdnmC07p+Z0JkWe/CVKc4Wky8AYC8nyDMUQyiZYvooCbqGuM7pg==","signatures":[{"sig":"MEYCIQD87ngwlcy+iy6T1Mhc/UCS69BCsnTcp5UnP2KCdk4kvQIhAKwOzMEINbpNcG3EZX88LZT+ttRkHo/i4Zw8iUAWdwot","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38528588,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiU6CaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmroRg//XjtnoaIF1Lxl1synI987t5J/jDY17FVkhtaNF5cTBOZRZP3k\r\nRwopudYBilWHgp3dSpLFxcRU7JhQp8sqCIwfUGQI0/dXHFwriH5h/IQB+CNn\r\nsZIEVqA33LzMQwAJJ82vGui47KfRSwA4G797BsNXy0G4ix34qw0tYNQp2PRF\r\nr5YOvugpsQBiUMKM0I9yW7zzeGbfTC6ifm17PwkeGdSTG9F4pTb30aQ0CMLx\r\nW+HQQO6AzYqqiPbMeTgztk+wmSIeM07+nxW17mGtAEwGFTvQuyIaP/+1WKt/\r\nX2XYPhGlsKq8R7OX3Wgj1rITWT7fCHi2Hs2Iupq6O4f75vqK7Zp/jB/oUUsS\r\n08EkWn035A0wh5wSetUP5ZtlqTyd2t3cbJYx6GsbM5Q7m21uzQ30H0uCMXoa\r\nFm/5LGrBncxtAxDCsqHJYbENFHgFUmU5BB2Z6ZE+s2TuoH0oA8t7Ks5e4heb\r\nc5M0DfgTL+Py9ebeXde4eSwaalXRhLOa5VGLbp07ZwwJXixAF6tED6BGL1o5\r\nUNzRBF8AYNu10i7EEZGP9BtII/UwCt7LKH9i+5cfDqIQmlAxmuff4ctUylBG\r\nxsLwKSWYL15hSZX3nI6tDy3at/nKQWjCf+REB5m0DJbJ1DbdzAwW68YrJytI\r\nuELpnBlw2ClLExMHMsTZXsfYlh165XF/P3c=\r\n=e886\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"5e3749a0443b55f2f7a7e2f6f02a29998a16f98d","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.5.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.14.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.0","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.2.4","@types/lodash":"^4.14.181","@popperjs/core":"^2.11.4","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.0","async-validator":"^4.0.7","@floating-ui/dom":"^0.4.2","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.1.2","@element-plus/icons-vue":"^1.1.4"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.20","vue-router":"^4.0.14","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.1.9_1649647769657_0.010552650195370328","host":"s3://npm-registry-packages"}},"2.1.10":{"name":"element-plus","version":"2.1.10","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.1.10","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"3251745714416a3184d78c3d93474a8abc97c6b8","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.1.10.tgz","fileCount":5608,"integrity":"sha512-sS9OMgP20dlYipmzHlEEgCJU+ID7+03YpRpoJWNQEH736C6ArmDMLnGFe8DUjPvwbUEXRA2d0Eo5d0apFgkSqg==","signatures":[{"sig":"MEUCIQDInEQoJDtP+eD8ofCPx53s69DTslgCCUd9IEUxdXUV5wIgIqKopnp7c5Qep6DUBfa8htUweTq0I7LjleQ1NqcryHc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33201031,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiXYk3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr3zw//fA+6z4tyrxYVkDYLA0k1qENneZHxC4dqb7PqHVMajsQNtsYK\r\nXwmFsEgUAdNO+T0Z5qOfkWpgf3ugGhdaUMp9XHGsnJHa85raUwmS0K9QkpFD\r\nWsbXnKwOrb7kufP8MXgxaDyZZen7deTv5YfWVn0J/XO9El69lWLloDAneuby\r\ngYs5CruFWKdSHdSvWapVQvF8i11lCRyLVDPNQO6UMHaCF9IkHx++Ye9ZKoKL\r\nMQsE5KXBZ3lT8eFwSXiRYqVMO+cHL01T/B/3LO/EgIHXmFkGD6SPX8TQ5VJn\r\n/yJX+whXhjChu3L/qcBGQJRSh9EZ7Wi9p338NtzyBZ5OO6H9NzVuwRPqD0jd\r\nXXdhf7OYDcpDtbCalpmcbZ/vb0+878iSESD2mcoRnUFvw88tbiN47LrOJ4PE\r\nOdYBq1Vf/tleVw7wxIBE9CD9VTfFiKjthT+a4tT+mfgXsEln+B9Xs57Oka0Z\r\nIInqh8HewpNVMBgvhLwXMpOYyYD59JaD4hIdskAAOwmZ43OFsd+rOOYlKTaO\r\nci+uu6vTb/7gBLBwQ3Kcds87DGqssIsw0IZyqcCro5ZdlmK0y65pS67a/wIF\r\nXFQJ8k9uTeHEl9G7miteeMQpdh0fDlZNjc+R0WB4rl+DRbwOPZEgE08R/k2h\r\nBDm+s217dBXWSzuTq5GDGhmhptQ2ht6AAhk=\r\n=Y8y3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"48f93de5653d3a3c43368c2c44f5caeb83c4dccf","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.5.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.14.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.0","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.2.5","@types/lodash":"^4.14.181","@popperjs/core":"^2.11.5","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.0.7","@floating-ui/dom":"^0.4.4","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.1.2","@element-plus/icons-vue":"^1.1.4"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.20","vue-router":"^4.0.14","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.1.10_1650297142966_0.49571986010873514","host":"s3://npm-registry-packages"}},"2.1.11":{"name":"element-plus","version":"2.1.11","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.1.11","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"6c1be29f5d78ea78720e0dda519960fd0c7d8fde","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.1.11.tgz","fileCount":5730,"integrity":"sha512-s4X0I8s787tv+9UdekBC1g7v42Fj4bucPAmu03EjbgrGrV7BJvkoBGuK52lNfu4yC76bl6Uyjesd5Fu8CMakSw==","signatures":[{"sig":"MEUCIQDNlMpIe1EexX61VJI9+lvdTsTFjg2wGy+1dGzvyK1NzAIgOHM8xWnLmA+1ZZLblrTFzOhO7RJhcBQi/+wL/yRgKzY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33376365,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiZsO+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmosaA/9HbTRLPRpJtq1pfBuLsv4DECExUcQvQYZWI0zAp887PlULtmR\r\nbw79xMU2mFGtEPpwCme6bZmH/3DBCkyEXaIPkBmoRw4y8hW2pLR7atGStKn7\r\nDWh3NZXeHxCk8cktDmhzEE2Q4Bbi8s3XssywRf79L+11yU+YO3paH7COw5bu\r\nS1kepz3qevBy5SBOIgFLG7yCBLPm8sCXiOv0GArELJtrMrs6/WDdppAE13qQ\r\nZoClQQdm+oVHPqd9CFMH9x+NlAN7FdTadZgqO+sTilcm3ScG1ou+v53DMBt1\r\nNXS1FOTN8kBAonKfoPeNyzGHi0FI8f/op5UYZGBeh4f29opI82Tb6fVC+1k4\r\n0YJEMbjxJ0c+wCeXmvwSBWxwxHzFECxKomwnneBChLHdg1mKU2djUvmQxH86\r\nbRR3b8g1kF8D2FXTtrJlwgp6nUvCssQQsh7w59Aty47nTe2ngU4r0bkoQZfV\r\nCl6pHjbnlJktU9RwTGfy9sPUlwFaWcA86urisfaA9Tqy6+dmYIhXsYrgZ/0N\r\n7I/SobSpZTnmbzRM8dnISLt7NNvkWZRLZFrBY9fM8cMWrYgRCFUE9/QUoz8c\r\nOup2O8BUhhHKR9D0jRr7kIMjD3Z+pUPsW/lpbh5x9UxkvRXrKL0SzGyBFiYv\r\n5CG6dkxC/pGC0gxbHWJ7ftpvatM4+UbEgPc=\r\n=A7nX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"44b6f7e5c5067f16ad8c2d02436c3ed32f8d0ea0","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.5.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.14.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.1","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.2.6","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.6","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.0.7","@floating-ui/dom":"^0.4.5","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.1.2","@element-plus/icons-vue":"^1.1.4"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.20","vue-router":"^4.0.14","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.1.11_1650901950194_0.9457281791935466","host":"s3://npm-registry-packages"}},"2.2.0":{"name":"element-plus","version":"2.2.0","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.0","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"58467d1efde071c2bc12caa9fb451e515667fc78","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.0.tgz","fileCount":9088,"integrity":"sha512-zxmAFEAa1T/n09rR+NozXcWl5CjaFtqoaxhFSafag0dgc90tgEHitDXfegdFAl4ahugdNTqu9aLzngx3VhDAtA==","signatures":[{"sig":"MEUCIHypgRjnpKuvMCJD7SFenNOMn2zWC98OzLTyw6Am33jcAiEAoLNlknFCtdOsFlWN0f95ECDibWLwjHgFuZisxtLxD3s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37526346,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJieJEjACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmop+xAAlyOjn+V6wmpfdPf6VWaaFAHeKqyXyEtNJV7SHb1oG5qgs28c\r\n9aQWMTR8ZPcXBk9xECAFus0bH8iYitqII9xoGFnDxAHbH3Jw6RtPaw/P/sUF\r\nrHijy5qtEeTTRBdjRmcHl4F6KN9wFEoe2uZ6mOXVbW0oUxWx47XZXGP4R1HG\r\nBI3NAEur4dMRLWpJpGrYNLSXpzImOzL9K3IVlQtWD04Ha3oCKm1jy+32niqo\r\n0fJrCOdQbEaPYsAEPTo4Se3G78quZnb4KXeBgmsnE+2Su3ekKT6jGbfQfhar\r\nJDYz6Oo7hq13qJnOSi7ncEc+a7aLHaieVTcdFz7WXuoRxEJWGcmV40tFqoFt\r\nrd53qE0KJf+eRJSCxdpSOI9AdjAf3xT//yj6+6TttcvdUTYlwTx5P6MRpeHl\r\n5zuTqulPJTiSiK784fEb6W613gxpI8aHXJ2b6VIF2IBRolPMz6TSA+jABURX\r\nsOOTVXGYu9HNRckG7Wses4P0tSXwwfXqqSFVk93UKxBWJvGe11m2ZlQnNVrG\r\nME0JbdQCDeLL7fP84eWIfTZBTTPu277pnJsM+fSm8WVMq88ZsOL2qwWJ6j3H\r\n3QWJVZXwI5Io2oxaV+PnrC/CgCF4tA7k3W517MSsxNaPQos1XO0FdZlyN3sH\r\nCwOdIuxfZWCBn1bed6aaqwBp6IRqiIcoa90=\r\n=z7ww\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"a983d8286de26dff71e28d2214bb7736fdebc6d7","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.5.5","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.15.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.1","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.2.6","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.6","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.0.7","@floating-ui/dom":"^0.4.5","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.1.2","@element-plus/icons-vue":"^1.1.4"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"csstype":"^2.6.20","vue-router":"^4.0.14","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.0_1652068643413_0.7440751963736718","host":"s3://npm-registry-packages"}},"2.2.1":{"name":"element-plus","version":"2.2.1","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.1","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"885f587612a023384a3ab8b2d95c5d55269e1f9c","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.1.tgz","fileCount":9158,"integrity":"sha512-+U3Rq6S2lrzgFWlO1IvqBRtWuOGfyA84OSJOTDC8DHG6XkbNE507Thueb+9Ghk8eIqjGtpvje5hEQRWOJ85+pA==","signatures":[{"sig":"MEUCIQDHMZDshxM/5W9pZpYbGs2PGfPoUEonZ0/o26uAVCQtNwIgK9opy/pFN+NtrW60NNQkpUiFqPZgLfK7a5AjTN8my0g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52599337,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJih65+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqrcQ/8DVlmzLOfshGqireLz59Ek9CYOMsERTKUcqo0Q3Gc+O9T6yQb\r\ni83TVb3WDyubdZ23KitvdWWcrD3uatEe3vwl+AS5TgnPOxTZDwUPfekvl1Uz\r\nSmRYbQLsVpOMdlUz04vWYrelTVQ/3AIyX0MFYjv9HXlIvPloIyuYVcXFGdPX\r\ngoStQHvnjXPiBkZzw2gb/Gde+SMjzHNmZ1H/A7M75kHUnrzq7IC9Uo3xwcau\r\n1MAG+QbJSaznFxQd7wlYKsd5dP01c2KHdANGriPGDjbC99ysGAQy33FijXkl\r\n0Q3Zcvd9tzojW4CTxwdNHwlyuBCHOjseQ0T3x9wd1ReCahckyf7g+8FNN8Zb\r\n50IkiCyx7mW5D+nal4MRE2ZY+0GmicNn0Z9YOLkbVgIiDgTBuj4mO+YCwyAz\r\niJVL2i0sdX1X+CA+LhRd/1/ilg6pFNkG85WUnt0zlZXCUeEQKGBFAVe0q41B\r\niHxwl9T/IUk0jCSZO9x3pAUN5BNEa39ife0z9+zRpQMPS9v6/1L414MWUOE8\r\nHHnWkubblYyrT0XQqVNMpQhtWt8iSSgfiNtw3osFXRedo5sJODwahvQbQ8BK\r\n1IWr3HAPk86imzhf0aJgP/qEoGS4/5P/f8NaLvRZdILjY9BMptjTrggPgsbX\r\nDsu33LA1kP2NA4ldI8esJ3vazHPoK1V3ox0=\r\n=Ttv9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"3e0fb5bb3acb190881c401e62d3ac67507ef0815","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.5.5","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.15.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.2","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.5.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.1.1","@floating-ui/dom":"^0.5.0","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.1.2","@element-plus/icons-vue":"^1.1.4"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.33","csstype":"^2.6.20","vue-router":"^4.0.15","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.1_1653059197720_0.14176014246629998","host":"s3://npm-registry-packages"}},"2.2.2":{"name":"element-plus","version":"2.2.2","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.2","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"464ae28a0bd904aae3dc53e84eace94866acbb27","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.2.tgz","fileCount":9158,"integrity":"sha512-yGcj2Ayb0jZO1WbI51tHJ4efhlfWKlBqqGtWbzhq+tcpfaKzJZN+IHRouuFasqn0ZV3tWCDu1jggDR1+9y7XfQ==","signatures":[{"sig":"MEQCIHy9Rs56Rv1jXO13OCb1+kaSML10aM1xQipdeSJyQQY3AiAenlwlBZ24p4YmNcpdEj/Q/Gf/nL6VzdLRiXMzbytP7Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52600499,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJii2bLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqF+Q//XteOJw+EP5DnfR/5pjiMksWYQwRK0vwJf+Injb6Jr78Q5mjG\r\n7zz5DKpbWGc/sgVqNoPblJKZJlf78odXUipRtS6fEfuVANeuM3Cm80tq5mNB\r\niB6WAQ0oykrRlxzvM+Fy/qKOFsve2of7a3XnozYxJ5GiCk0zz5eX+VP8mrAM\r\nmbD7FWRjA5qarOlwxO3btYD5nPsR7+urvw1+LTKwklSIDVi1kJp+cbYFKMCn\r\nxuoHffisWbKd5QCMjK71HtSonC7+5WWn5MHhx2klzxCbZHgEFIrdr8urbEkG\r\nj0aIOh4CcZcBld4DuJ/ifbW644PK6DiUfEHXmNPFDXcGuRis9vdMtFnSl/zl\r\nlLDTetJtE7x6J4Vhiq3uOAme6hO8g0GhlimWQF75FEujV0AlHy3Lz+EWiCT5\r\n33pXe5kJUhdwY/6Nqa1R6L3JUtpVftyUe0XIIBsv5IrXnqgIfNvR2mqNMu/f\r\nlEWpp98IoeS67qI85PJ0DcR8+iDbU/t2RTDAFtxDlHMIX+9eamc9otKksA0v\r\nvO8x5HPUpgVh5pDJrGdEfv026fzg5z4S5UgvVnezZgGAjsa/+SlwgSoQnsJ6\r\niQYhdK6PkX7cLgDikaVqUKwIvwkEPrq13/zBj8LAbDwXeY2XzBJvnIWuaU83\r\nI6BMkGz2Q3y7DqhotTdEee72jyQbLt0UNNk=\r\n=fya7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"d5b7c439043b8fd49604fd483bc44e2512140bd5","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.5.5","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/*.css","theme-chalk/src/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.15.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.2","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.5.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.1.1","@floating-ui/dom":"^0.5.0","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.1.2","@element-plus/icons-vue":"^1.1.4"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.33","csstype":"^2.6.20","vue-router":"^4.0.15","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.2_1653302987498_0.8665247525817614","host":"s3://npm-registry-packages"}},"2.2.3":{"name":"element-plus","version":"2.2.3","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.3","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"32f12b92b9382634d1d7fc90ab3db23cdeb50a2d","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.3.tgz","fileCount":9380,"integrity":"sha512-Uy3mhYxzkuCu1kCmndTTaLLaEx4Ji4ow96sKDH2TS7doNgH24eH0ANF5hE/nI+UCTbXYg1VOh97fXa55PuupIw==","signatures":[{"sig":"MEYCIQCBesO2W0SQhP3c3dmWW5SuGT6pHCfNzsV4YARferMbkQIhAOOBex5oOJOLy76ClDGnOHyO/OoouQR8D9MXLda7nhwC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":72495249,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJim3Y4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqCZQ/+J6pxd/VJ4m2UEQ3rsOifQW8OrQjE62QZocORNRyfAn75UTxV\r\n4W7cBJ1dQtTdGEBrXdGN1epAkCkwA3razRf3VrHyXxvI8BNTLu3b/E60aLFa\r\n5x475gIAl3qTc0Bjdm8+Sn/GuXA92tY2ec2DcmKMpRSbajXeokeBG1q2NdI+\r\nWgasx94gg0fAnvPFRuIrIkH4gZhJByCK15ehpDsqVyojMetEiyGfW5M4apKQ\r\neQFIDoPIrpRAUYwfzHGtVJgXg+liSRjYErQjBr/UnuYJlsa41eifCI2eBCNq\r\nn3lMaKbDmI6EhyWBAn93upQQUpUbJhOo+zVZo/Glf2qH9XJFOqe+iYUX/XLA\r\n8OEC8NULGKFfTxCmQmHe9zDztEfdo8fYxj3LNwzlHqDmZ1Ec6A1i5uDi1Ni1\r\nliPI3EmXysO/NKDsOOipRVJSQ5XJcxnD8HLWv6grzkv92zAKwPAWUH6goCW5\r\nLdKbi1T8JW60obZFhX8z4UdNiFZ/9DqQDyuhmx8FcPWHyyYb9/Qa48Lhi6Fo\r\nFLlBGlMRx81utU8yKh24X9VVY9sblkJNxF3u1a1NyV9l97oWFMdEskBgYlcS\r\ny0h31RhkEXUdmmr6cwFKzWPl7umgRafolk/2UNmMfOKK+bkNBxmMsl6EJNlq\r\nukRrAEFYj7morn6JW/EXuJIXxIPmxtciBlY=\r\n=ZK9Q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"b65a772043bb542587a5b08e78f0e6ab76fd5e4f","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.5.5","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.15.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.2","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.5.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.1.1","@floating-ui/dom":"^0.5.0","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.1.2","@element-plus/icons-vue":"^2.0.5"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.33","csstype":"^2.6.20","vue-router":"^4.0.15","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.3_1654355511609_0.6319678865055347","host":"s3://npm-registry-packages"}},"2.2.4":{"name":"element-plus","version":"2.2.4","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.4","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"f07f400222a5b0ae93ee9a139155342604746813","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.4.tgz","fileCount":9388,"integrity":"sha512-jktZr0o3ARDxWNWPEaJZQm2BN7thTpQl0aIfCUo5eB5m+zEap2DEcojyGKMHSQsCULcPM32NFfu2sHlhbhOiGA==","signatures":[{"sig":"MEQCIDZa9FrYeRwVnVjh/zkPdSB1aQ7HVK1e5LS7dtzBvWfGAiBjNvYD2z8UDQ8K0N3tjtHGnQ5E9wI8MZtBNR4+OQwdtw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":72505264,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJinEkqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoRMw/+MbQCA4OIWvX1ubRUps0Puru21a2Is1bOdtdZ34bR0dsZQEHc\r\nHDMWMGEYla1ZYRT1SUnuRCNja1K3nxMqYNB3XYtOSkREgmDjdKm2INZ/XgBC\r\nhWEcKBCKMOWptLRp2rEVoW/uMyDjleHwPVS6wpwwkM2jrxtbq34J9raFFDuO\r\ndYjhCS20OaunbOozWXswphmgxbNRGKinOYG7+GqCinh5c9/hlZ75qOPYzPMO\r\nJeB6iEWHvU8RhI7bUnBEwL/cjIJfYvHHFqsHS+IZ6q1ti07DTHBBUSMQk8Qq\r\nnUd3ddzI7CjMm/mHJBurSG0tHBo32K1aOOXHXklPSJu67fLYKVhnZMoxPFlY\r\nl+j6fnAlykPoH32guDZ/qFrchNf0+rRd6TKccLOoA4NPS2UJSSCsec8z88c5\r\nwW/eCEjIaGj9lKT6RynOWqqd9nQb9kNR4B/v0VLyPH/rkxB7f6rzQ+40Isyb\r\nhpDTkV5Sqv1EeUq1qIOOKA+sfflLyeiCTv/fTjmN4I+U2fp3+zMlmJiwTHrP\r\neduo/1zf/40i5NzXr+EKjIcmlMepeA9Hv1rGtLRZecN4g3ZuW1vk8BFeg8QO\r\nH7335PWKEeN9pTmPmdwNF00K3VpsKpItvHlNdN1I9dscHQcjtc6OOAQ0l9F9\r\nmQw3N5w/VkuY/CAhiYECyrBmplZVxp5Kqiw=\r\n=sQSh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"3c5b9a7e5b551153acb680347f1d769cbcc837d1","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.5.5","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.15.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.2","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.5.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.1.1","@floating-ui/dom":"^0.5.0","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.1.2","@element-plus/icons-vue":"^2.0.5"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.33","csstype":"^2.6.20","vue-router":"^4.0.15","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.4_1654409514100_0.15604046594365717","host":"s3://npm-registry-packages"}},"2.2.5":{"name":"element-plus","version":"2.2.5","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.5","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"2bb889660c9bcb9bb71e18619915b35e0f48d569","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.5.tgz","fileCount":9430,"integrity":"sha512-Kl0yn/PQca5YQo3M3NPBP4Xl71NQuMtDx5zNXZGVyl5FjdMujXiFB9SXKYGDUCgFU3d/Rl14vB4Fpmcl2Iz+Hw==","signatures":[{"sig":"MEUCIQDPxZX/bX/l0+ZL51uhqpRPjxWtjPFXM96/lj6uUV/39wIgQorOR02VDgw9oOQxn1vsgWudb42cbeeEMHYompiyhQA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78638906,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJioGYhACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqfnBAAmUeYqh+F791G3A6h07sh0BbqF7mlX4tEmJHYveiIljiVR9X0\r\nWeU+r0QOYbw69W72MOmyk2fUCf7fQqYRhMbWgO/UwS/AauVatoGvvEOMswfy\r\nQ9yV4bZtiTVArkfOZoOdjvibBbs/pF/veNaOalqqh8W7qCi6Yn0ECyKmCL+m\r\n8FvICHdrGoKEgO93M7OvRgC2DzgES5LTn7v1Td5N0MeEdZyUZxFswLiFrLfZ\r\nqBiBEaBuWie7We1ZSc2KxHO69duZ76uMmE2NzCELIkQ+Yia7Ay7v0U47mTVG\r\nmvncvG5RMFGhnXZ3NsJ+46+9u5MxVhOA0VR/l3p5l6wHMCoJ9zTtbzk/WCqq\r\nI2+rw0yJ0wuP0+qwZCMJmd28MIVYwY6mBz9so3afoKFitQpY4ytPwyfsBpMC\r\nT+C2/PkN3NmaAHi6zI3hZCwnf4qyqWNpmLSpBGLmA5UrZR4mWQqAmakqnMQu\r\nfy5c1J+sLt65+okPYgbtx1+NkBFh1Dz0TO33u0zXh/hsfhboVc6LCw2MnxiQ\r\n42Z7S3PSsT9oZyji7iilWnA/3TGR30Yzk88ToVQLMhd9VC9u+kmKJem6fI51\r\nzhnXSYwY2wHyAmMEq7+Mipm8AgsndDisMZt4NkVVo1pzZggVS+oAueaKmsI4\r\ndVhgejtM3FQuumMHQutddepTMsCCvdvwqkg=\r\n=HVHM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"5f9b4e7b1e4b781831bef4a07cab6ff814b37388","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.5.5","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.15.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.6.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.1.1","@floating-ui/dom":"^0.5.2","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.1.2","@element-plus/icons-vue":"^2.0.5"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.15","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.5_1654679072444_0.509364799752644","host":"s3://npm-registry-packages"}},"2.2.6":{"name":"element-plus","version":"2.2.6","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.6","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"60b9e91a2159526123d1b950263de37947153433","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.6.tgz","fileCount":9510,"integrity":"sha512-N9G4yWSxDt1YtreCJgt7UaSsXKuR4Fzb3ThzlBjbGDYDhcHijsrLL3qkdLZgeoSB13LRyr9pgP1ljNXdaYGa+g==","signatures":[{"sig":"MEYCIQCzZCTwFL60GBUYhVW6qoaY5v2+duT8eAcbcDiRA4OApAIhAM5DeY9TYx5wXB4e1djTcMuUcuKkf2H1kgB+53Srg9K1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":88675561,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJirEePACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrdOA//SMwCtxWLGdPTN7r4xBPMUj+LGnGl1TBTnmADkWp2Fl/HGNHA\r\nnSTUbmbKxcDZClM0tsPvVAmMCxQVAEdCg/nhbS77/9ZfO1NgrOzG+7JfFsHx\r\nnriL0ut34d6vvqPu1GEU+fSzX6Uxa8p1FUe+3XH0mHGFkgNr9gpHkzPS2Bhe\r\nwf6gJv20wy4+oofu+kn8sQFPRfn0onombEFXFS5yAo2jpm4r1G7cJDFETu6q\r\nJcEVrQth7tSUpOhFMUITJtG6fetCt5PK/fzLKxvLvq4VBBR1jgkj/KKxwO5Q\r\nc7RpwEHJjX8CRpikbK3cDnUYwaoCfashhuSDW0kO/xeaVAd5oa5f8oBeB2k5\r\nIVkzS8IrwiOY92mi33S7g8DAHvgizfAie2Lz6DzzMGmPF+hU2ZOT6kwFN4V1\r\nvotHXuOr/pMO5m06EHdv0D9Gc+a15TulxX8BXq999wLo4L30wUBO3s3U9M3h\r\nDs6d1TSyij5Y8VNZGwI08IOTsWcrt8xeOIsyLdFtkYH3EfRo00R5Mxcmaf8K\r\npKcef/NSQZK2TMtRZNDximab5V3udKhLzlN5MtDN07kEPG91zpxpmbjYRhr/\r\n8Wngr00F1KShtAq4HHYIXV0YGhpQG73ETTrMpSPrTxZ0zu4ipvCFWnVrk+DE\r\nIaSy6ptML7s0PeXQPsKzL/cHPVlPCu4K0EI=\r\n=DrN3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"29180f77e6c9eaa5accdd5e70417a4a7b98bb176","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.11.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.15.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.6.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.1.1","@floating-ui/dom":"^0.5.3","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.1.2","@element-plus/icons-vue":"^2.0.5"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.6_1655457678254_0.9884832213535315","host":"s3://npm-registry-packages"}},"2.2.7":{"name":"element-plus","version":"2.2.7","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.7","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"1acb1670a11a76f83f0415626d393fcf4f8ef0f4","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.7.tgz","fileCount":6038,"integrity":"sha512-wdfpR1XH+c3NA4Bs6l1DKG6IbBHiJcsZ9SSj30lwmrTKgV1/OtDmlOEH4DocROExq/REaAOAIj0VkR89twU1uA==","signatures":[{"sig":"MEYCIQDQv8i5T9g4g1HT+lHTwYQoArc3jj0RoNFjZjf89QZPeAIhAMoTW2Ky1dM5OaDBi/cpQbMGWtcXz/8FHTxWPOSj15H/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":87699333,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJivoXOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo89Q//b1uD/5Ao47Cn+oJo5koBPDjVzsVP2HY13TRbvQv/3Fby8yPM\r\n6MP7VHdCQQgQmWVkRhLvmr/A54cjSy8AQ7bmv/KBSEcbRCK5B4lCru9OSdT5\r\nA5RiRRrg0ZUA6YpKRPV03/qZ/7ghNlTqjFkOgvKOvDDF0dyJyh0UbjhawtLu\r\nkK6M/I+6PD3AVgSBfRPtSvgxIZdKIZkFZddlhBLftHUeBt33Klup4QAVM1Eh\r\nK419A5RapfBMeJ0YFL/8ecjkXIhAep4Fm/eU/qvq2K1dHY6zBY4IeRo0nhTh\r\nwdVB8uiS+fInFBjRADzjlGmQNzrc/cePPE43FA1UsKDb3E9g/iaH+OuNfSbr\r\n2URP+ZHN9puXUVHr55QbHycZLvkgNFI9TL6bTBVgyFWy4190raB8bB7YOycc\r\nFiay2ozBl7enCZMEUZE6lBfMj+9PdfoahhgEcUTTID69LQf2ElMI1zPREQKZ\r\neX0XXoiYYD74LmO9RSmN5U2iG0CBGFbCynIUZnJjqsmsyIvLu+IYh1ew6i4O\r\nWb2E6XkzeKgzL6pp9QcUmY0hzXtWTteVOuZT6XXc94clEdxQZqabLe3COPMJ\r\nzQ+h1+7Ua2gCCnMlKu4AlKPZyZIG95TGNegM6iEhIPyzUAXYRKBaDOwBdE9Y\r\nS1n2LAyuNUFj6dCV32Tm7uCf5SxNVCikl+U=\r\n=s2+v\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"b2823ba5169aa87ac26d60107aed23b094f675bc","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.11.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.15.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.7.5","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^0.5.4","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.1.2","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.7_1656653262031_0.8920132381153578","host":"s3://npm-registry-packages"}},"2.2.8":{"name":"element-plus","version":"2.2.8","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.8","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"6bba6285c20d8bea42247977d8f605611fc2da93","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.8.tgz","fileCount":6038,"integrity":"sha512-+cubFh1rgeGcc2LeBm7hv/1BKFJre/LIIdRntm9OLaIhysCxigjEwcxk9gbVT4KsbcjmoqZUr4/mwhIhQV6mvw==","signatures":[{"sig":"MEUCIHNmBiZ4RVO0MYMs2mxFq2waT1zGkU4fO1l/TUWGOGWvAiEArGGxfEDmEyjLSskECNy7ixRRB8ipkeJNtI9auynpXcQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":87698639,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJivu8dACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmps0xAAiU67Ur6v354I/u4dcJSBNySgJEVlUX7a43m3rUgDZ4v1AC4D\r\nlJ+rQE40nhTQit1lZlIncTo0t443HBncy4QbAFvY5P7wz647lNEPMtiD3f3U\r\nXktAGeSsJrQ56tq5S0Kz9ccuE1GO2hM4CaxhmjCrHRgPhDZmcyok26WfAyjF\r\nxbbK3VZhvKQKSwXwJuXd1zmFXTmC9z3dwSNgsLTFQkGo3daihznz2rs2oCAG\r\nUApFNo+5byheVQ2pHIgpuEYC0htr3SBF4vLkDQGOGCUevdNLmHgtjJdon900\r\nRjRVqS9gmUKoJbIZAOQUyomYXntve1hQkgx/FKTNS1DivJWXkWqQKnoD9vLw\r\nh0/skjQDcV1/TR6GOGmvWlevQKSFn1rVfj7z4L7ec5MWUg//N0ZErngheeY9\r\nr38yGz7T31GjKtiZ2AId3C1v/Ln0ABxfQZMyx6DwDIctmgLlJF2gkcrNSbaT\r\nwF5FWVb4U3YS6ZmYFMlYn/mTYcs1Ea1khzDHJBREuoAcsH4y6laBxE6cOib0\r\nP6rj3M9sfIkmFpmCbnvyCAK8+iad9tA3CqhYd3ZNaVm2fZS/pj0y0nB+CrrU\r\nA6H6TcRc/GfK9heQyrq7YRz9l1Y3quV2itwVkoODU2tpAcenFz6E8tg/cYZ0\r\nXjr+u4X2KLEP0DPxz9n9GgyP3PpEpXrY1KQ=\r\n=4BzM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"c5c7f07cfc1d3d39c3473de0ee67cdd0fc64eeb8","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.11.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.15.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.7.5","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^0.5.4","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.1.2","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.8_1656680221514_0.112513044392339","host":"s3://npm-registry-packages"}},"2.2.9":{"name":"element-plus","version":"2.2.9","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.9","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"f0366dfb2048d614813926274cb443f17e5fdef2","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.9.tgz","fileCount":6044,"integrity":"sha512-jYbL0JkCdv95rkT6trZJjCAizLPySa0qcd2cgq+57SKQnCZAcNDDq4GbTuFRnNavdoeCJnuM3HIficTIUpsMOQ==","signatures":[{"sig":"MEYCIQCDVHuAmRiKSycHe7CRd+QxU/sKYMdfLEXrUKrPfplSGAIhAMFU2iGxec6aS3vrCjIhazyUYu/wfLou2lk7Ia6bn/aH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":87850937,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJix6siACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqNUw//S+nbVN1rX8oKbI0qggKnX+2s/DqErqa7/gKuZT5yRxC8rAn7\r\nihyOEkFgjfb6aegaDuhNC9C+rTQlxhZVlfzbTCJHGDXwjs2lBmF7xct5nncb\r\n4wPslVf5J8K/+RNN9+jq4ct0ysomW+bjfZmNQawYIdCZ2yt82JnrtdfYyZ3e\r\nUOsKqUHE1ThlhffnXQN5/ipM5UJUJHJzMTaKlE0i+JZeNwY+bRaQqQO6BIFF\r\n444svwHnsjMXWVUyWh5QAzCjghPSgKL3f77XxoOPD74tOCnefx11RwjeZsbm\r\noKr0T+218FLVYty3aM0CMGhTzWi+arDTdl9csoa3pcPLCZWwXWXvMi+zewLz\r\n/KZrgKfM//sV8YocpkkPXpb+dgZMT8LWGAxY4EOGX9S7cRZgdI1CaIqNqZOc\r\niTJqoqR7hEj12ceHmTdw1FDqPWZowcyVboKQbOyiUnwNXSjYfiwniu/QV2n+\r\n0YpHO0lKuWqvAWHonjlDmdqSc5TUQATQTZGIBFGVa67kIetq7BpGVLgaezGY\r\njg6T2waXu5M6WbFTzUjylhvNpYYs6irQqfOH7Ys15rJmLFzMME9YWPR/UsmT\r\n85vc455wk6Q9YB6NI8MWfb46AEElrE53dKMrtwK8u7nwwRoA0nCUakvG6pFi\r\n1y8VgCqyWi6E21t3dIHmnKVoKlORNCJBz08=\r\n=vSof\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"51bd8cf336304e7ee3178216aedb9443af03be24","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.11.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.15.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.7.5","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^0.5.4","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.1.2","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.9_1657252641744_0.7768932857501758","host":"s3://npm-registry-packages"}},"2.2.10":{"name":"element-plus","version":"2.2.10","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.10","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"0b06a006b67b7ad3d5f071545a910782f9ba471b","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.10.tgz","fileCount":6050,"integrity":"sha512-hJ+LlbRN3POu4Idl1LXB+SHSWdi+wwmdsoDXdQT2ynGuwzZsMYiusOooYXyEsPlrizeLibdnNGNDx4TIjXQvUg==","signatures":[{"sig":"MEUCIF6xeWioZU2wzeyvsjOZy6QUK3HzeCutVtDDOyXw4hqwAiEAqW02SanyNVHh0fsvBXJw7uHBBVfx0hwqL7mWdW6PzPY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":87882639,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2l2mACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoUdhAAkTWxr91Hx5ElC1Bgn6xivjRbO/eY6eC6/S51wziLow0pkMnC\r\nLPhZiolCMMr5Pg4htjOm09IjyCA0DupcfmRTnNwCapIxqJOAHht02lA2iSG1\r\nQ55fapr4zhZTqwVylsJTK68u2YbZ1NvS2D121NowmkriOjxHNus9kP+3loyU\r\nyJxJvG9kJrfHEmnC2h0WDVCOCJiMNq7wfyCmr8Tj0H4AEXe14VQ8djLreCWk\r\nbXHsH0+wFUVfTe2gk2ljDezi2Yr3al7JBVsedSB39hFWYHH9Ph+lFRuqQj3l\r\nGytzKgkglw/D1mVsNQQWLSWP3ohxHs47ENLOxTNCEiQ7Dfu86Z6FI9q2NjQz\r\nOuAjqqxqfzhv1Mh0tqSemmKWFJFotWyy+z/iYgFhgT7obhvbFd7RH7fySbEf\r\ngHD/dZwyvBTb20SCuVRGNAkCsw3Qe254qSH+GzxAO7mLx1PA6VU4KvxUIXo8\r\n+3E1FtfKH5J/5ctniH/q4EWZWLH0R1My1UkTj75NcJ5S3w2AMjOpJR58YpZd\r\nCCfdQxAkz54vMHuaKQ2OOr2/jHtcoV9RRZmIa6cans4r3I/RWLkNci5dnBFN\r\nb5rxZ+vfKFvHccYHUan3gYTsDkfLKsVBgYQ2f6S+JCbtjUP/ik4h4bqxJEe1\r\niMMQztz747FJsSxrrgl4jOuO34+kmsIh60U=\r\n=1o25\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"c1091606110a312082e31c93c05e9deda60ce625","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.11.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.16.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.7.5","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^0.5.4","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.1.2","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.10_1658477990098_0.013835730043929129","host":"s3://npm-registry-packages"}},"2.2.11":{"name":"element-plus","version":"2.2.11","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.11","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"c242bd5ff10aea02cfc70c0b8c54cbc9b732e7ba","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.11.tgz","fileCount":6050,"integrity":"sha512-JjOvz5DLBc4Jp9OHKXNcK/Cys4NX5/vxpZ+gYmH2V+pLkwJnyIOrNZ3QxfdyG6yE4+NkpoA6koEgUB7T+0Z5vQ==","signatures":[{"sig":"MEYCIQChFZ+hsBT7+9ehPbA8UDEaeyZIBrQaVgOqlI0edN83TwIhAKkIyjfF8psZyYkzBK8SqmJmONOfWWHrtEcMYIS2wvEj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":88008187,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi4ONEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrywA/9E9VQsPnp8mlI9jXTET1aOvnC5/xQaNSMsx3k416fBHQlhyZ5\r\nda/+wLJuqHbb3PaWQcB1Wxr2fu8crZaAcjRQFLGOy0ygxfWKRpFh6rg3n6Kn\r\n9UTyNDnEnlOAlWiJNf0hcjW00XoP9t8w1PUrISRgKrhSksSJEqRxXFbAvhgg\r\n0BNgSZAvAq8l7xiG0jD6aVi3HRpm4/nNc0lzrnRAv4o6FeN081ANvlkVk/Uc\r\n+DnlmIlsSmzn6yA+l7oNCmKDnz1wmcWFUQ+mYt+IWprFrVLJ5ETJPpVgZQ58\r\nDzZLzJRmMn/6C3TjOLEli7xL45Sw1Tv5zuVV9KfOKJ+RRQt65nuwhsOPNqVc\r\nsqtKhrnku17o1NPkQB9WdTp+gWttH+pp7bPHhegDSUf38ag8PkziRC3X6sBX\r\n+ebeIBp+mrQXU/x50J2JOkCxsHwiyjFqOapb7R/cBjRqo24hG/Y6aB5iWlLn\r\ngTjnbi7A1pF3vuGZ9Vm6ird+6W7dE+5i47+AssQkWmZHxDvO4jC2+e2dENHC\r\nMBr4ltK+Q0KWud+QCs9lfb0P6ARAO+veSDDE86rFoEY5/gCsfPFjBHeiCVdt\r\nQ3bKIBV38g0pDvqKj5GwASJ9gxfJEOLouTkktIYP0eoen/xmFyUbGpFbIxpF\r\nq0UJP4pnE2MoxIPqomKPp66LJSRfLLOZBn0=\r\n=DlMh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"39faa5f39e5120d5f3e55e32e630e6ffb52f3ed6","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.11.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.16.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.7.5","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^0.5.4","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.11_1658905411265_0.37675576422873536","host":"s3://npm-registry-packages"}},"2.2.12":{"name":"element-plus","version":"2.2.12","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.12","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"b6c4e298e02ba9b904d70daa54def27b2de8c43c","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.12.tgz","fileCount":6050,"integrity":"sha512-g/hIHj3b+dND2R3YRvyvCJtJhQvR7lWvXqhJaoxaQmajjNWedoe4rttxG26fOSv9YCC2wN4iFDcJHs70YFNgrA==","signatures":[{"sig":"MEYCIQDn7eFOwuGk0sHu4chgZfKVnvMAM9YsAED46wR2nHAMrQIhAO7x04sUbbS803w8/WxQCIHAwogw3z2iKvTlODD9SBKz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":88011277,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi52RqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqHQQ//ZdFLQ9wTBxW0Yc0IXnWoMHgcKyBafPdqnaj4lcOSjiDPhZpy\r\n2ktj650WdgCuq04vsRON0cSDVhhAT2TEgdHRjSuI3pJlWMc21/lXVCFrrKdP\r\nuVLa6C8WSmvm+UXdOrf7jh96ghizZQE8o9Hpw+SN4VxFVgZVb0tgaQuwIRN2\r\nmzSvOcDYd5jootYGJS6m++dtYkhVuf8TDT9N7jVLyygBbF/+dEtlO7tDCd5p\r\nhD79L+Xn5KdyF4vo2Rg5vsjiPNbVgERPalBHr5sX6t/qTJ6KdUQUJV3m16e6\r\ndGw1l2OfILWc61paugNI9mnNhSlgFmXon1raiTN8WPbMpqO8uuvzg9D1VI8m\r\nCBA+YGOp1H06pAD0HgFmOE54YPAWKgtJyGBeat7tVy3FfTYMd9fIBAwTMFg8\r\ndJPnpHBO3aSkcuHXqs39IVv2bHIkLojSSk1yrUE1++kY/R+xz9CPudoDBJ1b\r\n1nbzOofhugzr4sz8+ES9DoEiIl09BazVo1DHfRWjNhwjLLddfYdPHWFv0fkB\r\nCX9dmh9gao4HoLYeFjwy09FgTgVbDwi/Vh3IgMa09dKqA5PizP95aQzkHfX8\r\nJcGkdg4ytZ6t44sExs9KCM/dNJajYalsV07fA2sHWYdxblqzWYtKCCQALmvI\r\na840GtMMzsZ3TobJ9r6doKHVs2rCAmxAY0U=\r\n=Qacz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"./lib/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"545e7738b728bbdc2ab75bbbd11100be6d058b01","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.11.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.16.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.7.5","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^0.5.4","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.12_1659331689700_0.59685223532812","host":"s3://npm-registry-packages"}},"2.2.13":{"name":"element-plus","version":"2.2.13","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.13","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"9ec3a9fa6587c93a87bb0d30c200ac8ee4f69c8b","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.13.tgz","fileCount":6044,"integrity":"sha512-dKQ7BPZC8deUPhv+6s4GgOL0GyGj3KpUarywxm6s1nWnHjH6FqeZlUcxPqBvJd7W/d81POayx3B13GP+rfkG9g==","signatures":[{"sig":"MEQCIFyvhC3hE+zxA+dc56l8GkpKQLfOUU+5LQdPhOHLy0lAAiBZYRbSKH3hN/4cYwJGwcKAOHmvEHPnTKsExq76Bz37XA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":88036516,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi9gomACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqnTQ//TaJ1Z65n69jFSHsKPL4kRyyuGyq+bCnUepbZgjR06aKWjV/H\r\nnKdruCBR9bjUz19a6PFlYYrotPQKAoOPZIdT2DU9VDLTEkSm+/maqj5NNv8k\r\nn7r6KdX7WsjpQBFQvr/xFjdg8zH9kX/gudLdUtA0y5Jlt5pHby3CDHIeRPr7\r\nHGcOqg3uSyaAmUaCu9HXFOQV4SZZvS1wYrZUswU+xd328/KCnkK1xwSi9HYE\r\nM2ga2G9yUXB/QDtR8NMMykNvjFhygeSI0KwBSPbikLEr5pC2zlHivUHK8XD+\r\nCsTvcM43gv27SKbkvXql8EKOkJUgJbnAFvpRENhvbzOvZ4aA2k2TAoiWqLCP\r\nI6m8eL9SrUEvwrvtdM+C/Wmfkd+h0eAHlp17nUyB76iOlSFpTSADL4Ibd21g\r\nOWdwokUherxlGI1rZ7ZiukSvFiKjcgnmD+DPT5MDgZgTC+H8X4f5H6OV3ewH\r\ndwHWGHwTxmxQWDjk9Fbs39XyTitAWQjjokOAbVYdjsFrwN6ax6yFdFb3dhWW\r\nm4/CfFkzb3ecwaEFmauha3o5CbLgw4+b/9s1V1Cjl0d/f2GdVFuumG8bY5N/\r\nDSeTfZKidMDlcn2eWC9F+PvaLDEZzhs3i7ep6QYF7lwtVhE0OO5K+I4Oruwc\r\n7OAcsy6dMqLcxYekmGG86hOEPqksSkhpp+g=\r\n=kIc4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"c254f99d446233cfdcdc7098eb4a3c7d07e0c72c","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.11.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.16.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^8.7.5","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^0.5.4","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.13_1660291621625_0.9001614945419523","host":"s3://npm-registry-packages"}},"2.2.14":{"name":"element-plus","version":"2.2.14","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.14","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"161f2cbf2c12608a570af303f8191c7d7eae725b","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.14.tgz","fileCount":6044,"integrity":"sha512-V5Pis0OHhePg1RgVogZrcefaVl8vjVn4Pn9Qsh/t2CbFgjg9kKOYFqf/tuP3ObSXGm3X89hpe0W+nLVAsaFnpw==","signatures":[{"sig":"MEQCIDfM1kioMNU7jOcPVca6xuCMrsrrE5fTIQHFNNzoEPfPAiBIUu3oIyUXeruHwM707QIuA++uXNUZ9m3ppOI7eu5FwQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":88151758,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi/3lzACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr7Mw/9HUIUXvz83iolz49Z+0Eozo4qJ7rNbgDCb8dy+ZwJHGJiCIp3\r\nFMpC+DqvnbnqlH0rDHSwDEzcYZQHeZmJRg6uKerLh6Y8CyYlIfi4QC4jEVfv\r\n1eQ7VUQukLOXl/vV4rTTlEcnV87LgopUj3KP6WpmeMAKXL8VI8bkycESyMda\r\nlZ983QJc3iU+S0C/+EWwgxyQpcBQIFCp+IYj+JSRyJTSBHDGypkshpZk3VbY\r\nO88HcsgeOC3HL4UwiZh7vB+T3RA7huMxHD8Lza1pxxQMclWVmn4eWdRMsR4O\r\nwZhtf5wEQGnpWpMgb/j935xCnhirXCb+BxqHBjNjPFYzmuu3lZ9OGJI0VhJG\r\ntjW5GsnZdP3Km+4+3TLfdjI/Z9UutRp8XzNhXxfUsWTHMRXkTcyQMRYoncBV\r\nDy0DYg12g52F7KhEp1MjSAqjM4FXuUOx3npawDuh3ZUIQ0sdjeucxEtGnoFf\r\nEHMNxcY/wKdZ/CW8ONGmsp/HhcA2AYgCkrMqWMKQQYYwHIWh9e+j7IFwT6lO\r\ne4KXTbaSj1nWM7YAI+KK1LjUS8CGxc3udGIigSfPG3BxnDt8JMubfzCd5r2l\r\nkcWLZ/2g/Px+YtyiGj3YZkmpVfWpLRRxvJktRxlfsLzRSfMSUPZ04PW24e64\r\nQKWwAFH1LyRpN1sgN2OIhAgNWvR7p9oXuvk=\r\n=T8jN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"83b7d1e2043afe5bbdcc9ca1214d9d27102067d8","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.11.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.16.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^0.5.4","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.14_1660909939103_0.528294397516166","host":"s3://npm-registry-packages"}},"2.2.15":{"name":"element-plus","version":"2.2.15","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.15","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"862bb6ecbd15b2d82d79dcf56bbbc30010771132","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.15.tgz","fileCount":6044,"integrity":"sha512-SMIx8xKB1YawT9JocyFhbs3Av2rXFfxrCVTLMYS0DK0xnW+fKvwjZngLfwF6MyRzXIuzNW17XFtu0iP3tlJHbA==","signatures":[{"sig":"MEQCIHbvvVFuiXWwL4Ufh7bG8GB5T8ZmFjTr8uVNPeAaJtclAiA3YVWhOVUbxMDDab09ilGJehgRXr/RZ75N1ofaL+w41A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":88275439,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjCF38ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr5jw/9HGwkpCvsb3lDGQOvdfKXCYCUOaBP+ZkDD3Vwq6xbOWU853LZ\r\nTR52yd75UVUeTzGy4tqn7DWiaC+aLbDYHkqJbS2IH6bPcxosO/pbwDxRMZiG\r\niAVC/2TcA1K8MG1WopycGhm6EQyt6uaxlDEnj80HYE9kb0MmyFfbfn9wgzR2\r\nny/JS5wKRPJ95KCEM5Q+etYiUmdFvY0vzfH8Y97pU9L60CoznjuhliDf40uh\r\nW3p7prsrkk1lc8a8/qJ2z5l0f4NECBiO3cavfPdSqhM6rdra6NNxYm2nu2go\r\nA4jc7U2kQZrbWIzqfcZADBopiMaifxKsjJFqLKt8OB6IkZtEy1zlL1eL55wN\r\nGkgbxCkOKkstTJKbVHEgkdKFN68ElNA3LRSTnqVKxL7+zGeo0Qrh9BW4DghN\r\narkUQFEjW7z3FAKGO0GMaY7FdV3QZ53IZluhB/0/nrcq9IKKjZMFcbR41maR\r\nJQ9wKh9gJYqEQOlMpzJqE461YBQIxeUAu8+IULGq8CLXsncpmivdw/t8u4Kp\r\nX1xvEaEzbHF4STPiR7h1U55HyHmRZzYe6ljdxFgIPlUt6uHlsennf5xiXLjt\r\nU4p4VGVfkm309HYLRc1BlVyIuMfUOOIjySq/4VakLPu3G6AEHte/Lkqv3ujd\r\n03eEABDMlX4Zf9aYjEut33fNXfcrsgLfSrw=\r\n=iaP7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"30ae268ab0ae3aad062793d6443343cc121c9f3f","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.11.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.16.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^0.5.4","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.15_1661492731680_0.31373408041410866","host":"s3://npm-registry-packages"}},"2.2.16":{"name":"element-plus","version":"2.2.16","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.16","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"84c00fc4a2d84031ec18d0f28820593c6e451513","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.16.tgz","fileCount":6044,"integrity":"sha512-rvaTMFIujec9YDC5lyaiQv2XVUCHuhVDq2k+9vQxP78N8Wd07iEOGa9pvEVOO2uYc75l4rSl2RE/IWPH/6Mdzw==","signatures":[{"sig":"MEYCIQCJcHOcIEKp3QW8bgaWvuTOCzOBM1omiluyuCQ9j2qE/wIhAL2nfFynCKTv4KVDqClOLi6FTC5Jd3O5Uq/YoBc+4bQR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":87888474,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjEd2qACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmprrA//YsU1Cee8VbiWQHpPhLN+Ub0wXxQ6hw0ntr3Js3IorfTvEsIE\r\nw1FgsRHdZFFkGFhrBPZWOtJ1yviGh0YJwx11VHWt5kIkUNG/PsVG5PwnkAHG\r\n3ZO7IiT9m/zv4B33D8JsT6BBnVOgd0i5H0sni4hSSEqUn9rLvkVO9jX2IZwz\r\nMtNuBed0r/N4UnF2xvLtO9r8gBWFC6cyl7HgbfsjQFb3t6WR7IsVPdvD/pxO\r\n78gcWEqg+Sfou9bv5BBXx2TNYOysd68HipmBwSfAvIQhZBql24roKsOUOXH6\r\n5DiU7Guz0H6+THTj4Zhv2Wh7I8iLx4jx8PswrcSZyU0jlPEEs4Mg97m3l65R\r\no1kspHqJFu+01zhuu4D4rpwPucmEEbuMYmV7qvF1DKQUFTDizmCh0hfC4/PZ\r\nVMS94llU3F2iQY1Hzb7bicCqReHKmrePBIhq+BeVTk7Q8xwdtc/uYNVzlJda\r\n4C854fpw0IzBYSuNKRsm90dHuO1q2Zb0/r/VD0uzhj3um/6habBFdwxSEsnW\r\neRo1aR15e2RzRg36CIBDNId8cOcDoo0qG/8aVFHbK5ewtSRomFr41g5igrpz\r\nPHVB3LIy2c7aeWFunr2z9RHnFCTb13mBncY60qzSD3J/dpxmS4R4N8Fzm7pI\r\nnlNkc2Vrrqqg245RWpHuVCUL+GdiL7MvxyM=\r\n=N8zG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"654533187beffb122887084bfdec9467f593d32e","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.15.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.17.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.16_1662115241716_0.13768221057324626","host":"s3://npm-registry-packages"}},"2.2.17":{"name":"element-plus","version":"2.2.17","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.17","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"abbb12c19dc029c95b0271822ea9a0e635704bc2","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.17.tgz","fileCount":6038,"integrity":"sha512-MGwMIE/q+FFD3kgS23x8HIe5043tmD1cTRwjhIX9o6fim1avFnUkrsfYRvybbz4CkyqSb185EheZS5AUPpXh2g==","signatures":[{"sig":"MEUCIQDhmtmDnyil9ZKy3zzsw3NM5yL4YL49WXymtTpw5fvjzwIgZsj6ekndxY+tqnTMjfVvKxdGLOOp9kBOMEFGQGpjGPM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":87927679,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjJArwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrF8g/7BnhQkD+p3R1OH7U2//kh08SFGlvKau60iGmy8A83uTFgkzrL\r\n/kixy+jjzBtjgslVrexFSt7BmvkpX1Zx1kSwfhFitRBWSOoJprN0P3vgJb/t\r\nWjCFKetbx9BUnkBi76nsBElyg2B80HTNZCboYoCsCl8WQq1FsBuAR32QEboM\r\nMe1TGW3hfkqKI1FLWI8yelw9S1vaMhpkbRS0XDQWq9AH0q5gpHxX7Rf4Ty1l\r\n2MxwWdFjmurjKmqeI+7rccfOYLFsVWIU//YV1/OQyEWV/zBN7i6mflA+cIGl\r\nUu3ShPrAuD7UytRcncMe+577FcfjjiRv4JnDPx5/84UQNC/9fdTPmvrWZcmU\r\nIn2wDUQWFl8Fn+o+Vi9Dq+HOaP4NnGOZeKCZauhGngICAcw3Sn0nuENZHJZ8\r\nQuW4f2VAWza/Zt/kHKajiEgbUgPWXF1yrSrhVCn3hMzBkhPlrLzb4ugYbOZ5\r\nHSJy5w5h52U090PuulZn6Wwgt1gVB1xFOOjXh6UKuT4/z//jwa/TCoDAh4Ni\r\n+5wYi+y5Mt4FEjKk8Q7hz6/bYjsdxFuM1uBIGqjhG29kzUjSSc+xP/jPn6Sf\r\nu4jZjWE2nJ6FkiBDswv5QFrVnI/5LupLiZWIVipQJXzCzsKM3kWXKNAThVqE\r\n8bKSD+ATVFrv5YSDewNr/OhaxqEzdoASbAE=\r\n=uMSO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"0c4630d7a9263e07cd71b1e50a1f04c0bf8c6e29","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.15.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.17.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.17_1663306480066_0.263591461434697","host":"s3://npm-registry-packages"}},"2.2.18":{"name":"element-plus","version":"2.2.18","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.18","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"62b388e05587506d2d40bede0729046f7c41f9d9","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.18.tgz","fileCount":6104,"integrity":"sha512-2pK2zmVOwP14eFl3rGoR+3BWJwDyO+DZCvzjQ8L6qjUR+hVKwFhgxIcSkKJatbcHFw5Xui6UyN20jV+gQP7mLg==","signatures":[{"sig":"MEUCIQCDnyN5szRXqLzRMkSiySA+qm5VEidiU+XhSi4RZLIkBgIgdM06pbenzbVi0I5lEKKYS3box8GdOjNOMP/wdHYxLes=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":81434458,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjR8CyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrR2g/+LiVpa4nmyXmTp8ax5KL/G754C4Ed+CQYTAglkFyFqmISWG+h\r\nZxRWeHvFXV4lc0tMM99f2b4PBInh762pfkxwmg9QP+P9t2UQcz4MHJIIZRnJ\r\n8teNOJL2SL8jJFDb3wBDxGN0ocb/Y6Jn5/SA3KYjlUXP8+HI4daEhePhH10P\r\nh9U6Tu+q6onKGB1Ubs7bL59ekxLUKN4PlH+h1oqvBhjIExC8U4HZG5sFHe/2\r\nvXkyQvBRr6LUWVN7GMmicfa6JUq6mUPk64CSTA2E8a+05z3XVwNrwFT1JpJk\r\njVUr3ua+22A+w0yelXJwafStkbk2agASDIdaMuSYzJa6Jp0lWhUNWkM4J7fY\r\nrkpIcd7nf2sqWUPR8s3wc5PS+PHZIQDTEEJ6v5jx+no2o0TX8fime0w7lMsb\r\nNSn9NpGYnnMK+ri5u/I6OV5g5dX5KXHl+JG6k3hZTCoSI8OokeEbOGncqcMd\r\nwXcYZHMflngHroEDk283pAwXKx0LrS+OA7fl3oUBbV0sf6ax0pADMEdjGHY2\r\nn0X/yLWBcZl1Qe71cOg1Hy+cpoiHrhzpNMB16SeBx0Fas1l9IJ/9mC6TcMBt\r\nZhl43urVcdnqk5KMqccvWNcE77Xs23CL9N1k4QEsxx3bQb+k7KPiOI2ZCb07\r\nuXy7A9WzQqexbtqdmIj3SDQYJ3xKzFxfTEc=\r\n=0xv4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"2599e5f1f87d12e7c5e54d46e2be3f8ca54bd05f","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.15.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.17.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.18_1665646769841_0.6622539341132585","host":"s3://npm-registry-packages"}},"2.2.19":{"name":"element-plus","version":"2.2.19","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.19","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"c11cb84b35b7698b2f5fa7ec0fd98034f6861a9e","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.19.tgz","fileCount":6146,"integrity":"sha512-uN0gt9lUus/IHzu5J6vkbYoYJgUtU05osdtFv9RO27bHKOG5GN7dH6uA3OKfkQQ6R2sV8ZxY1rc9PH1X8Dgrow==","signatures":[{"sig":"MEQCIHpti+u862FSVveBpBTfzINiygJEwerAB3a2kNsAerPgAiBnUN2x7gJaotA9daJQg65hKLDod7fhw6YNk21pmRKiEQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":81713569,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjUm3tACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo+tg/9EkF8QjejxMhb6tFg91SYf2AXhv+fxoqwNXalYNCy2J3yqaKP\r\nMrH1qKAmSM6jQUcoftO34Cn45kGlI1zmvNlA0nLbqsMlEi7zFtLGtMfouVA4\r\nFmEyEH+S/ZhSZpuVdFlAoPFHOBvwwFhYobx3OpmDYjc/o93gQn9dJJvt5Mi2\r\n15cSdwgOsa4SkfOdFw5WQ0u5BRnomLa8SKWib3pnnmAbKMBSp87tWJPmyYSm\r\nj9NkbZ3qGFvOolM7bBCMpKC5U73f2cpHu9hdcp1Gx6W46xjBbTHbGBxh/plX\r\nAousVO+uW8Uh6nA34FwmuTCeBzhykjJogfFLSDtZo52BHJfRP5tKBIOTK0tk\r\nQrrjF0OkTM3ImKV4oFOJazlJ5GT6lq2EX/qtxcWWFkEpk2q+KDKlyZdIMvuP\r\nUp2UIxD/gAT44zz10D2Ztbrq75JTL6d2LJfEMgfsbrzlFCyvxwHk/00KNZC9\r\nqcqSsL5AHeZTjBkW+L3E8AxM+h8djW4ye9vP06qa8e2SdFP24mI1TzW2PIuK\r\ncuTPQ7wgOor6h2Kr2eDzeP9kKs72R5JhhuzWSAesw3x0Hp8bHi7o096Pd8kQ\r\nwiPU1462MwAO/sCQA4FP+n1Hf1RWEg7IaY82HQpaLJDznBMr7GHxtwdLTsXv\r\n7kgHZ2BNMY8boZmx2ag4ay520EcQbG5ZPLI=\r\n=kk/F\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"9718804cc52cc8229d3a7049965f310e68659bc8","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.15.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.17.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.19_1666346476738_0.43063873072665304","host":"s3://npm-registry-packages"}},"2.2.20":{"name":"element-plus","version":"2.2.20","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.20","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"f4395c276c0945cc8dbb8e6ed4a8d97f173a1ca2","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.20.tgz","fileCount":6182,"integrity":"sha512-ludShd3f5kNRY4FLzeoNitLcwZ4qs2M/zwKeyeE7rUzZJAQ0BZtcT3SvZoEoBLmgxw9jHoonl4WIwon4UzhyRA==","signatures":[{"sig":"MEUCID4GLOlryTTMLfNT1L7a0qZJzJNUhRaWNKsSRq/KSXDJAiEAs0VVr0PliFsymvgzVU3UueqOoynqWfT27/SWTiqoQ5U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":81525903,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjZyEFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqD7w//TEhEqb1HKNuofKCjE8gE0Ov7A77dZvxAggCRHxm15HkuS9E8\r\nHLQsSxf/EjpB+sEvyyWD1LrDaVpI0vBnY1cq0Wou/Evh0JgVDVl3TTexcCZ2\r\nj1StFjXsBWFQC8n2l8zPK3wEayElCacPWBlq64Dgk8Re6JNywhSGGZ+otod4\r\nx8Ag2OAcyhKQ3RVXg3FcnAJT3EMCVMaoxepcaN80OLhXF7KwlE8pZ11+RDv0\r\n/Y1FokstY87DNVfS02wBhfAoZ52EtdAhjayVCabQNydRYFiseF2qJ1wkDatv\r\nzP9oqgAYwU5RxBDMkK6CfjTR4FUKbfm9awh0j/ti9aEdqsA9WwVPJCl1J7kc\r\nt9Dzpnd/o0iLqI4mm/BE7dbMLsitbVjTqGgGpBw+necJaylqSrGjl1c+0CE5\r\nQFV/j3BRAZMJkhqsprNTZzsBbUug453swfSLgcMEPSvhUYj0owLjH/akZtig\r\n+HxQR9iasuzfLcp+Co7RgwIe5JK8biWJ1EeC8rcXZre8CR2jyzaEsrIdItAJ\r\nggaLqSN+TL61sCX9tKmcg0ht+XREYyIiMBQXHmyXmBfwKhtOHDkyOB9P+yG4\r\nqjSqxHAEC+x/Aw88VDlbhpNPFJ71lU0aTIKTbapQjpiV2ba76tPrnbosD6W4\r\nZ/BuSdvImZgluuSIeLCPYNidtjhvt/JdSM4=\r\n=3xyr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"3c4383695bc8cb8733f813b9dc853380d0592ac3","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.18.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.20_1667703044525_0.7855227413530603","host":"s3://npm-registry-packages"}},"2.2.21":{"name":"element-plus","version":"2.2.21","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.21","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"ba3902b5e29fcb83b7407a0b7408372a1eed595e","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.21.tgz","fileCount":6182,"integrity":"sha512-wZUePoXZ1zuCkzENK/8mn+mekuLJ9OoGYiudjUujzCf+T8HfOQl+TKQStwOkGBNk93fK8e9YdFIty4jH4AX6dg==","signatures":[{"sig":"MEUCIHCOPay0KI0UlJZgrgAm90hEhLT1uf3YFr/UGZYmwwZiAiEAm9YKjUW7WxWYP2iKxu/zUYgIvQToS6aeaDpJeg/rks4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":81542963,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjbnV/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrMHQ//XtH7IXM3vUwHgetfNtSZpsqfLBdz48+OYxOsQpgUxc/fmfxd\r\na5t3Ga1M0tZTd74MG49GvIPgJV9jJzr9y9Z4ONnOjzdVQPwUaLkbmzhtfSAL\r\neSDf9QcZLoLr7G7JbEOx0l68GAzH0z8yaC5aWLZdJ8XvRWBt9gc92Dax8iyl\r\n3SZAOtOS0YMFD3g7IHCJ6ErTE3+8hpF+C28jTzQiIwJWdEBMF37RSca3SkX+\r\nMJ39co2DSTeIuVq9jQZ4SdzINVBOV+Mc081pt3De1y3oALA1/p5gsiws1M3T\r\nBgMY7LHBQxqqMoToQNhQWo5yg4YFoM8i1kfh1nc50skMFMjkF4ADmKgwj5li\r\ngpoZZQDm88sZVUvM76t89my7yrtvfJRULy4AaNOh5gZJhwG3yXnhmNe1UfuK\r\npfG33Gw6NxRAvI6DflMAOQQYQYZd0oTPwDOCjH/pCc7qRDXnWyoEmHENfBIU\r\nn5rx9s43z/Js9GNQ3NHNjuTduVz4veQbLm88olXHHlDsNjog3gwkgZoOWl15\r\nC8TDz4Sr3rn417fdSQiiFPtS+lNWPS4MfhWNUuP7UYN9j0+K4heNbdJ6Wwuf\r\nQQMLNx+nVT36DxDOq+YD2rrO+EmfpAE4XOVupImqSniW3BLn3/w1TI2wwZ5R\r\n+x4/E3yPjmPFSMWn6JBInynEzCPxxLG95UE=\r\n=Mbz5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"6f94f7dcac10e73eee6f3102e1d7cbd32a2506a6","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.18.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.21_1668183423413_0.49439853298857495","host":"s3://npm-registry-packages"}},"2.2.22":{"name":"element-plus","version":"2.2.22","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.22","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"6374a263ecdcf0a820c3d2e926bb28102542e254","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.22.tgz","fileCount":6188,"integrity":"sha512-gg2g2WOMNpWf0wGesymUvTV0VZDF/4khQKroSNeCV/vWJ/cqssPYdtqfGxTiFRt/f+JpyFkV7O1mo0yzMCzrBg==","signatures":[{"sig":"MEUCIF/yA8xyjcocuWNKuC4tTlfG/ZxDvV/speA1JYaTpwK5AiEAxYr6KEh7DXCsWxqQ1oVRllD9NSV3ibGxdFyYQuvcRnw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":81656839,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjdzRlACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqDSQ/+LlTQjR18bBV+spJWyL0jeXdvj4KhznRqsqT792RVT82Xbjqe\r\nP6oIZVrrgP2RP57yxWMCpKYOoU3A/pD9e/j82968mFInqI2siObxzY6jqdBw\r\ngVAMOpwCEITIQsvF4cVUV8laqbVSW71k9Z1FW8YgfHMgFsC4fJgoD4Razhut\r\nadL3AX9W2ezvp+thw9NNxiO46di5UaMb96e6BA+FZJ7HTVL6QoQjeSyxSCuq\r\n37aDY4it5wSNJ3UOSayGXSnCQLkivoIvHaj+7pDgYM3ymNx9E5EZ/sxK8cbl\r\nw1eRp/+tZl/zWmFPQYEywjpACPbqvYn5r8Ff/d6PVRB/gRj7xleSjecn8gP8\r\n0nkC3uH902w33MxIU8x1vQQ924HQPIuwF0icHhpxaGlUAyHwm8LQHBSFgfWY\r\n1mkjdh6AATug3olIXcwNrKOHat5MnjzQe67LN0RNU8bRtM//upjsCWox2Izy\r\nUsJ+XpeiwiRiHJwISR+2CXdDrBcqglyRsgrxqYPAJfXXISNtT5PPQ4FJVW0q\r\nwW5HRYzD03uDUvDkV1huuEvcmjLTpQV0w0I05zg9Oh2I3tbf+qy/jnTIhUcP\r\nCIl3D3sBkh60FEwq4ssEeC3l+/VoyLgJW5ZEjhUG1qGJpPMNtNwQGxdFeCE/\r\nHfE9Mj04Dr6axb5XqNk/VKHiB0mxEiniBYQ=\r\n=PgGd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"ea8a0fd5eca35fd340da2911e96bc1a8dfe1801e","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.18.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.22_1668756581149_0.24462503479493836","host":"s3://npm-registry-packages"}},"2.2.23":{"name":"element-plus","version":"2.2.23","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.23","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"63f512bcf74e46d6bec6d8882d9dab40c1fbebcb","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.23.tgz","fileCount":6194,"integrity":"sha512-/7BtebETiknsW2TpSwt5RIpXxFQ1sbYoRelJqeiB1K9LcL0MwyQJ1rZSuWHBCHduMvfpogNZ66dwp2Giv9lYbg==","signatures":[{"sig":"MEYCIQDmWdbYdWlS6s+yY9TdS+hM5YdXaYKfxy8YXsbUAjRW5wIhAIZQl+KlZD8e5NkEnJnHBLs5yPHqmfV2PaYYjf/XKunW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":81883785,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjgIAfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoS5A/+IraOOsuIK1TTqWwU1ZsDFdzwGYs6FHUxCo9puB2sWhtG2hhY\r\nmygjHJXKBNmrpyr/i9WtdHNjYkM722nVHFJ21UG4NDTEr0Cskfx7dDBwBqpD\r\nRSuN2nOu46pFym3cy9S7XopnKe2TNAP/dOfXDPji04d/JAL90E9LQxSI8n+P\r\nsfgMB+Q5vEufA4CmmwGSdfpeuvKqw6VC0zR5cdwNIVzOqkYOiiPmMTMKwb5T\r\nCR+YkKoezPT6d9Dx5kGsML7vXRU7L8JQNgKg/iZDvVn5ff522nAjIb0Dh6PY\r\nMgh9sTMPwLqvJCLtIUR2pDzY77xSrjyTlqslrk6UXirdg/eQklaEPZzsR0pZ\r\nrGN2SAnuPn2TJ7ijseCvQpoiVUsFbyeDizchuO5be1fw40gj4FVjwE2PHRa/\r\n5zA7Xi+mOJ3nizlKKXDofNdZ5BLCo/QlmhozafYv1dJpvjmDjV1REPNGKOM+\r\nRzZI9rxIeyySvKTxb77PUKUU1zKkG6klbevk4Y0jWmNWcWRCGfBlIIEeRjlA\r\ng0tQ5b74sNIJOMJX0oe1bEqinPO3NwWw1+4SrjP+Op/yNZS7jcrWlk/7W0Ei\r\nPYeCDmfDu6+hOKw3cB6kBbm77+NhJWNYsa7C7XEJV7pb6ScJy0uBlF2psTx1\r\n77v/lpz05IneK2Y6kqY7qQX24snZd5qQLUA=\r\n=wblF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"fda0c6137e010d55f2aa8dedc59371a687aa587a","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.18.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.23_1669365790863_0.6670945385581228","host":"s3://npm-registry-packages"}},"2.2.24":{"name":"element-plus","version":"2.2.24","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.24","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"d255ddd1ba6b6d1aca30607165773270960fd09d","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.24.tgz","fileCount":6194,"integrity":"sha512-D9T1EfFrsS36DSFVye+le+G7ECKeG7NtoQ2Ws4KeuL8Jc/DXAA2O7qlofkXNisooFTrt7K3xVeiWIElyQOqTIQ==","signatures":[{"sig":"MEUCIQCN58l2NSFKIaE29y6dduhlnue6oFnfAsztar3NGpKePgIgY/n2BHr2mtJQa+HnKkIxqZyz5ZAi6vqaNlBs8ZcA2xs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":81877594,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjgNG5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrbrQ/9HFww7QZWXf2VMFf3A3pzOjOL7E75Z1JieEI+Ne3splt4zmO3\r\nSnOLa6eZo6KhhSQNScrd2yjtNQXOrJF+XWQ2dwwlVjBHxNtOysjDnCksZe8F\r\nsWE3GjK4Ara2M9A4ER0KKlfyNi0BgEPODH++UUNF3tUqVPkB5Uazar/QCi17\r\nwZ+kYnK2Vf4LVtUwfkeKTuTvC1gtd7E+EY/kUv9O1dBWdU06/GcBzTkw9cqf\r\n0pVZvDka80IN8gUr5e0cwRC6R5XIEBlR1yqNsslAYn37zHeV5k3rG2CD+P4n\r\njYs7JTA3WR5L0xSBUogIMncfHxV0SQrzdm3ANwyt3B1kw1GLRI3asNQs01EW\r\nSAs86+yn7D6xTPCW66Rotuxf+JjNrZ/sXSFV7ZSi0GE1h13Q977RL4gm52ih\r\nICzfmCipQY+NIfMJQOfXqeZzIfr74co6fw//jLkOCpUdyMH84Grw95U3TVKq\r\nqEknNYv4I6LNltn5F8dIfngAzXfZ4Q0dEVQYt+W3wXvoE/2mwThZykBae89X\r\nTTxUaTYw6iIogUPUL2zUroeZETFLMdVp0jPTGpsRmEZMajniIAZOx55JjKtZ\r\nwMKy2M8tI9W77xgC9v4Gp/+qKZV1LrOpM60DQFNoz1Eexh1oeoVpcxjUBUsR\r\n7P8NPmMaWk17nhwsYGzXyOYhsa074bp65OA=\r\n=yimm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"1a1877b1ff27dcc3cbfeb68a7172ec13fa2ab250","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.18.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.24_1669386680701_0.6922580444511262","host":"s3://npm-registry-packages"}},"2.2.25":{"name":"element-plus","version":"2.2.25","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.25","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"ebf1e8a57300eb2d8ed337cf23ee5a566bebc402","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.25.tgz","fileCount":6194,"integrity":"sha512-HC8CWY31e6pPyBpgqI0QnWkBgs0vRzdYnEw3mpdM/NlKfp0PtNFX7NESQLomqoIulH5ftL09hjQmJNvZBQpthQ==","signatures":[{"sig":"MEYCIQDTm2HjUqJacNFVfTU+wYqKWugKc3e77kYBCfgAFcsMbQIhAK8Tc/P2gWpeiwkHJ3L7oLIB2KjXzsytioR13qhnTNAj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":81877693,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjgOFZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoPLw//RfabH8JuTByU5vv4yxPQfqDoNHQpx4Djb8qxLsL1lAjpuhfc\r\nPsXBmVIAuHKzcPLhvygGSRvc8bkKcNVjm3yJ3TYSy8JnxQJKRyqH854++dGl\r\n/gAXyBslImMb5KBeAQU821JL+vR1wlWe6Jl1WdfUGZwqRTWbEl/NqHHwAPGp\r\nEioR/yyx99bdDCKmZ/wXhPWwPW3CvdELfyjZU4leX3c7U2D6H2LwKUIrgkJ/\r\nHXdwdWNYUlkQvLGw/bVBApOW9RpvZmTW849RfuBUrSMS1KIKpowjoVo9QauT\r\nqytS0K8iVsUt4aPGKoUk7zMmaA/tetkyYoOtWnYYdcZtL/SlYv1NOQMQ+yX4\r\nBnVi3LMuUGmPgckX7PzjTwCTz0dE6owaucw747gYbe/VIqBy0vmsnGMv0cnz\r\n3WdnedgIweBX91mJduXQnwBesLTqbo2kOiDDZicFUqfBda/YYLFx3ETyWAW2\r\nSGjVSuEt5/IipnhN7v21PtcXiBklQPEqMps2URibCD35x4UklvTjJjb5xnnY\r\naId/MxbGR+GVWtdlfk09Ew77YqtJObbmlln/Q840wFRdNm3OGCmeaJ7z45Lt\r\nCHGzr+wM3BcNW4e4ASwpoyueuOYRptIGHx3BrcLwxnOFLQKYw0Czn1wOraic\r\nLpY9/caP/KHuV2ukfY4ko0Xlxo7OlKzLIyY=\r\n=uL4t\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"beda3b4766250724bdeffa8806df64a4e6acc344","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.18.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.25_1669390681000_0.13579429405239796","host":"s3://npm-registry-packages"}},"2.2.26":{"name":"element-plus","version":"2.2.26","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.26","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"5e46aa5d8127786bb158713957f8a253b35bf019","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.26.tgz","fileCount":6206,"integrity":"sha512-O/rdY5m9DkclpVg8r3GynyqCunm7MxSR142xSsjrZA77bi7bcwA3SIy6SPEDqHi5R4KqgkGYgKSp4Q4e3irbYg==","signatures":[{"sig":"MEQCICZwQ+1WkXb7JiI05SG+oiH1a/+UOczOlQsZUac9WTMqAiAqqsJGvP9bBUtWYz9NIgo2Zhdk582tXxkpK3FULDRIKw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":81928380,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjibRRACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoHJw/9Fj0FiKu8jYXdFi+PFne/LP7vEvOeV7BCT6VQDi90Q2fK+OW0\r\nGDVLwwkqqA/VY9JswUerl4P35NDacOGkOLA+Mb4f81Ts0jxfvVnos3QJGcLv\r\nysZlKoXL0wR1Iui0jbNxi9xRel4w3mSjJkbdsCJju50UqHH5FZBL5kp/CYGA\r\niIjolUwPDVzHb68NjptlklamaxRWgNgAxwQIWsBYi0QVfd2WX7uBUhtrpUBz\r\nvLtR9UIucxd0CgWIt6q/606/VqR2tTSHCzaZNm1//8JHAJ84YGK3lLxdVVzk\r\nZUL6PzOI+zh5Agh8PBvA4hISsfdandEuJlgI1tL6J1h2Kw+3fd1LUXSOrk7V\r\ncZDdR5G5xY8vFkZ6yfcVk/LlD9+2WygRAZ+WLwX7vr+reQkH2aD6seQovRWF\r\n6v09+9ZPx47nYScdrvm7JIcKlt2JEqTQv3PzAou2GA28PxPtcDmuqtPg0b45\r\nLwTZYW9FCg01+znAknp68FBPaWH3KI0fWBgc9fninlf54VBy0oD8juorOkRm\r\nFQqHD7F8ItaSxV77La5BIrszB9GFP0CzCAZm0iom+nt6yB/hfOAvBxMEE9Jo\r\nGp8TdvNaJlqPXOEYo5ZITx39hpQhCQ7hwGfx3LAQ4T1MRXIUBNeq5ETLW7Af\r\nDh7L9U7CoLR6UnKsv1ALU6cfeXVBExghXW8=\r\n=VCnv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"49a5fadb29a8951c34984edecad06d9a51357eb9","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.18.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.26_1669968977409_0.20710174335777465","host":"s3://npm-registry-packages"}},"2.2.27":{"name":"element-plus","version":"2.2.27","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.27","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"a5ddfe018597436e7c4bef6abd2108d72f765ea8","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.27.tgz","fileCount":6298,"integrity":"sha512-P04HDOZBYDdvlYuleuCZRULzAc5xJVOBfLDK9xWxVo0vyo8ntdaXS5sTU+/76vrNzuO3FhLn9kvrsbiJEVa1jg==","signatures":[{"sig":"MEUCIHpySDdusJRUZYTRLqOsbYKFyS9VYP8vWQ+m2oqyQGYiAiEA/NZeD5dHa0N4f5+fUMgYvlkhqw8e+OzTPA4jrm4Vd5U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":82265065,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjnJZOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpLzA//UHZoo1+MP/kXPtfgqguNkD8vdpyn0F4K0h10S9g9OiZPndlP\r\nEwaBDiOG5oKhW+hV73wvYYAezoGMIEhKqLLhNtigPHKNvwtpM3+GjqIFDHEa\r\nehJVAAZuUQmfsnq50eAE+fOUVa5Vpku0VFkMzp/zAIIaKGPSf+fE8xZX2cXf\r\nRWyOQ6PFNxNBzwN3rkJEZlp4CxnKHsU/bdOTmX4EswA0wfexhbVb/QN5WxP/\r\nQY2zX7ipndw2Y2pLjpR6FbJBZJpobCfMOk57KxXDMa9CPDv6WejvD5YxqZOv\r\nxZvTl5RI6nCD7Kk9vK87et5c7wGxHMa6E4L4bnh5DIjGrtQnmzTF6r3GEVM2\r\nZZhNIUS6TPQsxFwx96UY3h6nYBk9SI92BwIimTB9dCpjxoqLOOqns9eMS+cG\r\nD3qkPHkAKdYMZIZQqWPrnf7T1m3HL3aMflXrbmYuiySBD2FH03Ub22ur9hnt\r\nj9deONAemOeFT3c+lrJfCCHDh3KXLIVGbYXqv1EM8tio9MUK2V5UPPiyH74r\r\n4HmGozSbgAniPUeSJBKXFgYf053jfm94SzARywn3wEAWgV0+H5mbgrteZy9y\r\n4IVnBwdaYI35/kUzXMlD4HGo2G7KdjThkowj0PQxxx1r/GE9O0kVTKdUdfiK\r\npS67mZz9W2p6MmGyz8NjCVuZs0z3Ik+kE4M=\r\n=P4U9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"2615668013726ae956bf62d0ffa02ac3ac58798e","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.18.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.27_1671206478050_0.6039976982272492","host":"s3://npm-registry-packages"}},"2.2.28":{"name":"element-plus","version":"2.2.28","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.28","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"855441976e82da597faecaf6ed74fc4650a970b2","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.28.tgz","fileCount":6316,"integrity":"sha512-BsxF7iEaBydmRfw1Tt++EO9jRBjbtJr7ZRIrnEwz4J3Cwa1IzHCNCcx3ZwcYTlJq9CYFxv94JnbNr1EbkTou3A==","signatures":[{"sig":"MEQCIFG0UHKfQGoeGAITu040OlGh/5Am5qFEwsKbP4uZnDuzAiBOTWw8ElRYbLZazw9laVvqHrigR/bE5Xx0J1ZkovpxlQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":84034480,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjrtOeACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrRZA//QIVa/0kzyi6GdN68ESZkDNGWL9n4Ijvr8ZmqwSnK1ery5T8c\r\ngp4HAkm4vpK88KcpOeoHcflDSv9RjS7kkZ41YTBBwBfMV72k+Bri5Dr1hKZP\r\n2Y/eYuq94xeG1ziVdcGaYQ358QkWpDxYLXun31VHGTtKrPHf2lhV8hDQQoHy\r\n/qiTJO3b7npJtKX631RZgP9cfvIQUApcDUFNlYYT6A8pH6n+yKrvZnxJ8ouf\r\nJU/0x9iJeuksQgJdbB/7u3Ya1wkA9orksy88zmIgdvdURPCtz5CNa9QbmGBO\r\nzVG5SQtIQYc6XUUIHnRBJ0LG8eW3paYZ21+hwsSDAWsm2VY+W0Psf8hvwNq6\r\n3R5VZoxbph35+t8QaVlAUqiFlrhd3rs3pNgY6O7VxSUP+2X5LETWvez4CRjJ\r\nJf8Apl3KNIpdWUSbT4VR4G3AfqDIneKKWvk2vETFEiE3f+K59XRxmZCF2jUs\r\nJzK3mzBPEEgdM3PPRKB9iA4dlKBOfcEiVaUpy5lrOREPCWV0rm46UHdCKzDG\r\nKMf+Tk3GzL31SkkBAUKD0O0bmwjaH+QzplPN5Qb1f3onDPCRPMiPm69Y4u4E\r\nLcMOleYwn7D3145sxCjU37FfOfqMOpfqoUXvfeSyz9oBI4Y0SeX4rjHiK7zH\r\nViw8f9Sqo04fNcjxwZtFgcpEkT5moey3mzs=\r\n=FPOE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"bd6de06348f8bc254b90cc0f87544a1476009470","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.18.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.28_1672401822084_0.6464851320275697","host":"s3://npm-registry-packages"}},"2.2.29":{"name":"element-plus","version":"2.2.29","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.29","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"7dd72f9cafdc102ae3f9e4efe612e403ef713a74","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.29.tgz","fileCount":6340,"integrity":"sha512-g4dcrURrKkR5uUX8n5RVnnqGnimoki9HfqS4yHHG6XwCHBkZGozdq4x+478BzeWUe31h++BO+7dakSx4VnM8RQ==","signatures":[{"sig":"MEQCIGdB8SQudE/LkPtoqCNnhZKgo0HElEgWj9KMhViljJfOAiBLLzvk76HIgxwWOnbjFAEGwm8p1Ua9oaw0mJ0vb0KTQg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":83916128,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj3LXdACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpkcw/7BDzJt3eq7/1H2uKR2JY6HwcWlueZy2RplCI+6XPW9EcH9vX2\r\nmONTQIpxKY3199nj0l1xHiY1Q0u+KJmD+2Kdz3pgeSBVbOy9MypUkKu8S8an\r\n88I60smYMKqjBJ3LwiOKNXuu6WfGf8AThaHgbylg/SWxDQbQGpB6BY/cVgNh\r\nh94vH7npuy+XP+UKWhF0nD1LsdXuiiXIakO5CVN0HdnopxROatz3WDtLTfuT\r\nOKbkpdNciVT2jNPdUGMCBBsvNfQ9xCoEv9r/TYBltox10tCamWe2PkxphUmw\r\n6RpnMP2ihHvjatC7drXy5YduXBYmlg2FZxpwxbMA139jLo68xDhc+jaJqo1z\r\nq7DLSyBWn9X1NEIjDoEMJkowy82MUZVzZZQ9U0hFSvkpdkrt66kcJqX4T3zg\r\nTqZa6OibSDA9q034AqkmSV2bIkh3EXE08mDNR2EhA+XwrSzk4I41MgPTLqX5\r\nyXIClCcNCMHvSbzWp10pDGUx+5Wn7IaeIh0GdgHaX/r/jnkvvZZtI7fBxuVM\r\nkiL3z3yDuAIEDc75sjkZ2lD11soSHZEdFx0EEsPovyxnC+H29Q1ApNy/so63\r\n94rpUM3IWvPuKycoFgaMagVCv9gGAuibSwape4PwZweZ7jIcEhu/COGTMXCW\r\nzjPx7t46buWujJ0G87tP9M+StO8U38ZU7f0=\r\n=FzyZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"da0039d1f0b5ff815e5d55ca144959ca51f6cef1","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.19.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.29_1675408860903_0.27142458589371476","host":"s3://npm-registry-packages"}},"2.2.30":{"name":"element-plus","version":"2.2.30","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.30","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"b594efcbd6969f3f88130aa1edf50c98139d6e73","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.30.tgz","fileCount":6340,"integrity":"sha512-HYSnmf2VMGa0gmw03evxevodPy3WimbAd4sfenOAhNs7Wl8IdT+YJjQyGAQjgEjRvhmujN4O/CZqhuEffRyOZg==","signatures":[{"sig":"MEQCIE/b/Vr0URwoO3dsxdegcrz3V42epjNojZOebw2e/1qMAiBOc3eUJSRrtU/z0AiAv8ZWwfzzmtE5rPAxj/osqJuX2Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":83919949,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj5gOWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmogNA//XOLgY+aqLXxvHEa6+8yP+oyJ7sZc8Kyy5zh+Z6tEwVWtUgDx\r\nBHFaamjpChsrVqY+g4j7CIyuhJOvxifZkSyc9RG1w3OEWHOASMQnA5sVl+8d\r\nl9UAUzQJCRN/Uwq0GLwBRaKk8F3d5yfa4XLG3Q74ftgYF0qnVgCIgD1PIiP6\r\nJzMugediLsd8Rrv28YpKW2Qt8wMXzhNMNR5jsbtNfAy76njTei1EBgwyIfD3\r\nPpdx+TljGVN/VE1aYQ078B2LO+RxDYaHJ5DhwhUTgYM3CfgAL3QfrhltxaUe\r\ndu2L12B1cZQye7Gkrmz1KYd/g0fSL60YPjrh2fa11LAuOKT1R/ocrKpaRkw+\r\nK5vJDM5E0tDJQ6mGm8rboXB9XGsAtjxf4nMYov8GCz4lBGhhkg0CcmLZV1g+\r\ne1476Yoo3wmOjnoWq92gwTfJ7J5s8UJf5QpVJ07D+cgXT8sVCjR7De4by+Z8\r\nmDgP/p2dI6MmR9uHOKKdEvWONKdMQ+R92G6QR4qYP7TXO5S8KCVx1Dos0aEK\r\nDDw/MUd+jnYSALX7UtAWd1Jr0BsWCVPJuJwsVQepRDlKs/uECJpwhZMRVyxm\r\nvuE0tal2COc8hE2ahwCPSn6Hn/i41TNREzXRirqXjLdmVxEZoFO9OmX04ysV\r\nZ2J7ra7GOI1D/7IEULeBprt/ZGU10m94Q5Q=\r\n=zH5S\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"31e4fc8f76e9c8ed645814efd6e49075eb3f0a9f","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.19.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.30_1676018581498_0.5592280669721561","host":"s3://npm-registry-packages"}},"2.2.31":{"name":"element-plus","version":"2.2.31","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.31","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"ea987ee2472d4a1da4ef37f580309cae4066f173","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.31.tgz","fileCount":6346,"integrity":"sha512-YtQWCqLhxR0G1eyQf1uTKG7VW0rRGkH17NdWOpYfxHH214Zvn57/q4N2udG+o+EN5ezHp7PqATH3fFYLGBHImQ==","signatures":[{"sig":"MEQCICj9CwphgDxLaZThVoL7sc9aQ5/3YrFh+Wi3fDPzfxJVAiAnj34s4ArSuEE7imG5goXVURneURMNgpSCZTZMTwIVFw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":84002500,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj75QoACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpQAQ//Y8G2CIeP3dBMo/P33FEUD1xzcTcENF6GXyMj3MBUQfdRL+lS\r\nsXJK3lmM9sgD1GGPiB2fzJgPQsbYDzvyk4mXQ0n/GdWKybvtE2B1S0buLBJm\r\n7xqqL5CjahjLRqOeqtr3U7ATGaemhQpCY6LNG3KmpJGFdTXc5V7u6LsvO8ET\r\nbHemne+sjmz4Txw4YPukQdTNZ97Rp8T6C+irhWdy3Mkz+qcGEdhg0mQA7L32\r\noy6fUAOgX2xrXAR01r/LpJrTg4FoPgHEmouYEjS8IV6qM9TTaF+1kn6Rh6mv\r\n7aAPVTuzH8oZ0PXbqgEbvvAc95WqAR6BBuDI9LTde0aLYGVMf+PS4p24kZ9i\r\nMWMU1OE9IeKRcVj6RVRK5Oavq2VAF8wVnEGgfVjeE560tJv1zc9625EwfZ3Q\r\n6WJp5az1jV2zWlJm4LvTzWx7i924q+M5dL4H9buLGZntI6HwxisG8kCRfZMd\r\nnw9AnbvTkY2ukMlj4pOFtCT3/pVJhUNp8nEopUtSW2uzttho3GvheYFMY3El\r\nbfsSA7rwbjjPB3AjJw3OXcfKeuJmFR5+tTcMhY+51anbFyHx6qPeCmnbegou\r\nP3llFNOiMfFlUFMEj9xwm1PGbZS/+Bu2n4xhab+qCJWo1z552ikiGbCN09xO\r\nQSagtDI0O8Ws/5lxYK6/cKqKs+6dK093Ri8=\r\n=QxXP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"6c6ad8907803bcb3bd65dffc4a107ebf0a9e6e31","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.19.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.31_1676645415535_0.30984589656227635","host":"s3://npm-registry-packages"}},"2.2.32":{"name":"element-plus","version":"2.2.32","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.32","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"e7e6757a66ed158363a86b5c9fc10dfbc0096783","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.32.tgz","fileCount":6346,"integrity":"sha512-DTJMhYOy6MApbmh6z/95hPTK5WrBiNHGzV4IN+uEkup1WoimQ+Qyt8RxKdTe/X1LWEJ8YgWv/Cl8P4ocrt5z5g==","signatures":[{"sig":"MEYCIQCKHLqlUf07zTAhlSOrVzHS3e2Bck0oY98GaZ38bxlsXwIhALt45isjmWUz9JBzRLeoOgmV1uENHZkrceKwV3shOENG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":84009525,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj8hyZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoACQ/+LbwYCzNmCctSo8Aj+YlOCFD8Ouov7FBASJxdVv6zImngIpQ7\r\nzLMuUq1tZUqu7R70NkqOjVfoSXDdA007WjFG8VOSyyRtrQp1tmcaux9ERYym\r\nW9udjIhQVOaGY1KjtNCCXUXbhsmHGsSsZK4xH0SzNLvij3/gsvTl3C+vADPA\r\n9zlnHV/15ijwJ8A/TgSRCNlSmXD6JoMEX2bErbCGKDkFkoiZjWpzuMH2Ga7S\r\nEfxwYPjZF6FtIuDvdGtFjho+oplx4QDl8y01kumt0dPJP/Wa9BjKWd9zG7yu\r\nl0BwmV5tFu38kL5WUPqhoMdH1n2HzlSv9/COFeJ4uwleGVSvNAs7B2jYvkU7\r\n6Ez+gbjyQey5uTKaV4fOZO5PzZarvRWW67uIEfBTpLHO4hJIooR4/+etXfCq\r\nHQTKyjyYtLXNBXb4usL3290Rxae8sm+xl33VRpq4+p6I7aIp7pCcamqi2/t+\r\nKBbxY4260kAMsbBdYxdvOr/weP+1pjA2AmprwAA8wasNvw5N3GAPZ5zbUlTu\r\nOD6SyVS9Q/FEV6XOxcq7cfnNKVMHq5GJkNr3MaW7/8DlRDEHw5luXADFtm62\r\nCgSFQSUtq+YIR/4msp2/Vdp7GGJUlE8eE5DPZ234D/AdndHGWAoLu84YHDH3\r\n/hDrf4UCwplmrbRVZFYr+/FQhbJeXg2UdwU=\r\n=Z2S5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"7928954772d5dd2ea8c2a622b545d8b1d4a28568","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.19.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.32_1676811416713_0.5152646040588504","host":"s3://npm-registry-packages"}},"2.2.33":{"name":"element-plus","version":"2.2.33","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.33","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"30fe0db427dba42eb60a0ad8177f2d5c90435a92","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.33.tgz","fileCount":6364,"integrity":"sha512-E/PmMnv4+4I9Ue0ZDfx2gGgGj4iBlTCWcES3o4jxfYjayFlcQO3UvElJzhaJZ8vDm9yfNN7t2w/xYOhsSYCNNg==","signatures":[{"sig":"MEUCIDo15yDVKUuWHaOY1+jlTqUTY92e6lfgwTxTJQp8HkOVAiEA52TcWUv/ACJNTW6xJ/i5iQyIAPVYpubp6IXvvjfTmgM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":84342264,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkAelfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoF9BAAhH+NOkE/sW74CleZfLLz45rAUzZxyvpG2R64h/hPtdqqBfPk\r\nHHvz7sdrq0O5mLH/5e50ecN6UhoyfYK9Byg2nTJXLheZzaeXBF/4XubSyzAS\r\nWyhmcqvHj5SdMGgr98m8JiouJ5e2rcF0zP4wUoXy5x/iFSQAcuw0G+0CEGgF\r\nW9qHH6I1v5yj0MTXZ3ObxigVlIKXbNmZFjsvyKpWfeGXyKTz/6tYRfGDVPPX\r\nQgKUnw6k3Z3ZTFOenFszLlMJn95M7v4nUfZ53Rpcw0L81I+2YwC6uydFOysb\r\n2TufxCZhtDV96q8Bl0UDsEVOsJ9a35tEALX9EUQ5PJi//yMsJqaC5sv345M4\r\nkYMRcD8hofqHWuJyqfUKcW899w1vplV2Uf6DVpzHht7n/dRr1DI0sGhfpxo7\r\nXDlhv6NUSwOmRJcDfmESKYbECXmBCtiXBj/XT0KPIU0b25/uFI/iIjSgdbDW\r\nW5PfHDnxFBCniwdGoxfinKpRTwPuGLKzIOaa/72G5UgqrFeefUKtLKJ6v5Gd\r\nlFgdIMnXyDxHfFcpvWHLMHB8sghoMSbJBsoS6cwtTyWY/4D4+FD9jGG3hpPs\r\nVTOo7DSrRUR15QRZbzmCJIvFB2dkRtFVSyMGo77Lz2kvOR33zN1vKyC20gTQ\r\nRZZFH98Z9KonC5DBsAflvV4b7sHvoOj0L3w=\r\n=MPo7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"cada1a0c6740c7912389d9bf44157a1164eb7e74","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.19.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.33_1677846879296_0.38339698574654824","host":"s3://npm-registry-packages"}},"2.2.34":{"name":"element-plus","version":"2.2.34","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.34","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"83267c3581aebb95d460aafd0096d79d0597335f","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.34.tgz","fileCount":6364,"integrity":"sha512-StHCEKC5+B4aa4yTHPnqamqtDMNngbZ3Vz+w3K7u20JVBaZF/Uj0T3Uz4LNOCAY8gWUyrTS0t4Ig5L0KXZDr0A==","signatures":[{"sig":"MEUCICgjC2aK42ljVC7MEWKzWdjX7qjXkkWaNRT4ZdkHyvi2AiEA5Z1F7aNFwAY46vH92BzrU+qLk88L591hn5+NHYzmgYs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":84106378,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkBgwtACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrLXQ/9EVztJx9gbVjgbwylEpMvfFMgrn83al+ILewVFjLzixI6z+Ob\r\ntGkcNQYulSdo1pPglpkAhCZwH87waLCiiKHmBA/MFpLzvSbTsSe673QV9Ia8\r\nTDCHHk+vLX2VfkfsmZQNR36x5PZ6voUGAaUyP0wqUYlGD8vk0LwG3Xw5cWaN\r\nb38DPlFj5+1p86Yd+iYqjXudL59SMnoyUXGi47w4SPsXZxaY0KwwSvXByA17\r\nSCTnytI8AqoLkgfFAnspf71C1Gs8fAxJ0qW1p2lOXaOexXrdxk6jfsY+bx/4\r\nEv+Pgv2LjFEdGin0hlaBL+b5kFY63HJKTR9G2yiCpvtCFFRoqri02fDrNrUY\r\na7xtRijj0j4rzw0TNaRtJKa8lbfDqX4M5yFfPhAszwV8uQB3ODVI6pCCbImT\r\njOgn40YORTRP/s2acJ5KGwoBphlOY6LhWPgY6dag0GAFv6SLvLKNwYmO+T83\r\nRqad0WZP+KoLUi80Ot6oPWVkxPJB2dxm3BoeeEplo4DZOl2c2jqOLLyGXoEf\r\n4RgfaicIRLIh9oMXD7FUccVC3gAtrNXEMZZKI/t4kdQWhlwzqqdevkSp/7zK\r\nZwD8RQ5NcxjH4R8NSdSONmgmMAIXEtnjyvNzHQSgpOuKWAI/MgNeBdvUjZnv\r\nI7Q2s4+TF7VMzSzkD/QFjGjhfc2yvUapbuE=\r\n=MA/z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"c75ba99a3d8337b9b7a757107c023d535a6a1fe9","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.19.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.34_1678117932702_0.7168136806710088","host":"s3://npm-registry-packages"}},"2.2.35":{"name":"element-plus","version":"2.2.35","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.35","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"d18787c8050e7b888b229324a561b1694f506f59","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.35.tgz","fileCount":6370,"integrity":"sha512-if5QW41hQwVltekRS+avXYtqjRNra/fSgGstXKPR1lSJ81PWQccy+oztw/OP+USqZP/OejFs7rjLPk5MHgT40w==","signatures":[{"sig":"MEUCIHUbfxHQT3UVy2XMF5H9CQiDFL4A4yiV8cpGJNQ8PxvpAiEAmK8Q8XD1ToLQxsTy2ctE9F/vWu798zjbRCzS3B8ZsJA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":84132102,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkB1UNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoLPw/+I64jUUtryUK8jxgIqp0xkPfWx1ZEfMdCL6tAc/V5daUFOlv/\r\nc6Pg1EbAN3A4zQav60bWf3ebpS2p5H+fhX6hBE5KEFwrZl2KUhpDMARCZ0ik\r\n8Y8E8x8og/rOsBcEDC7PuJy3B7H6RlyEmNcNhWH8KrZXj7/jRCA3nbplw7Tf\r\nQ75sbNLC/A0+rLhO5ZI5uQwASdr+GlyHRNsZksh2/hp6LJJlggTjeHC9NnP7\r\nAMumN0vQggPvqZ4RhBGb7YZuZBt5dCCwgBRwwKD7w/aTvuj3CYOLnjqyZeKx\r\ny0+Lwdh1aYKXpxJgLn/KXJb594zsHgnJzLzQBuiAmxNnKXdloBXHSTZagSp+\r\nmFvaEqR1rthozsf4xzUYStsPlwOIvbN5onvwH18IraThpc69ha9j2DOQgab1\r\nKaIbd7JXy4gIBF1g+ppW//BG++4VnEKbzvSWfP0S5pwOnQBHaIA6vskf7fPY\r\nsR2lCAJZyQTp0aildNsqhKID3xq6xndr1RR22qF+VJgc4xkFs2h4rixFF1Sy\r\nm2gdFYjB6yZ4KwEHSBO0cWEjuJ6Wasf8rpNUACy9cmBeCypVdTmIG8ansPuY\r\nKIL9bqSgETuYFarnKpiqwnN9fttvTPRHZvZeC5uiAnokIQDl4oIfGf+wpL/t\r\nWJoghx8sECRqaON/BaLlMdA+fKGYaYNl5/0=\r\n=CZ4C\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"c6e4f4d594e308a82bc352538d977d012f9bd386","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.19.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.35_1678202125132_0.29125937716457995","host":"s3://npm-registry-packages"}},"2.2.36":{"name":"element-plus","version":"2.2.36","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.2.36","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"a343204bbf7a0783074d57eec51edec3df6b8b57","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.2.36.tgz","fileCount":6370,"integrity":"sha512-9DzLqOVuw8P5Ck8Uqd9XdnDYVg2Z3iosZ1gtk2xDCWNqeoACpldP5gxa/Hbfgp4QeA3xC+f3g+UeoKKu79l28g==","signatures":[{"sig":"MEUCIQDHNBj+IA7JYUluJbzWznz2ebylElw89pCoCKqGp2QcWAIgKi5j3b4eh11sTcd0KR4NSnCtlhXdcpit789h/FhctoA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":84140688,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkCLBNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq27A//ZtuYuJJcuAk+bpub6mUtjsihIwTHWcjIG66NdwkBImMX1qXs\r\n39mQZEvrZnWIyXCe0vjHfi6hbRQKC0b+5HasA77yE+k80UFdB8j1EYJ8gykR\r\nKsZn1OBzu4nYdC1vIFpmpRgQQojc9W33lS1IifomHtcdolBO2+yOIceGhASL\r\nXsVvHW1qjcjBqWMvhnd0JDMH7lR04dDwJQ0MrjIjPJ9ghoOFz7sNz01QBgC+\r\n0HdLjsZlrdiawrWbHyEhoU/PYMsz4sgXas3360ehAfpgj7uCV2wUD1urTQus\r\nZQeqykbbUkm0mQWkx+7l5oUbEnc0N41rjymY1p4mS2KeZA/HQu0nEEob2gKF\r\npyXdNRLDnu32zsoKZ5wa0R2U0NLhEt4hfdo9F7nQ+YGemjIcW1afsp0tys39\r\nOPmK3A/ozMcWyeoAoyAzm7kKN/HJMnXslJ9rtm/EyZ7h8Kpz3PwKH4OQCws2\r\ndcNAP0tH2t4eAMBsQCuvPfEX85Ys9LRYEyJ7T0riD47/PwjvNsz3q5Y/IP6s\r\nrFXHQaTAemwBWKcfLLVOlZ/Wk2pNsmxF/7xLCulUU7CED2AWfvEhVgoHrHkq\r\nLtepmumCskNqFXUGkG9v3aQ9EV3oIQxvZsPqNDgceKoowWtC5QQaS0blHMJ+\r\n89xyZB25bbI9tMjgEhUdY996EYiC17hMWig=\r\n=BSie\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"1969eaa052d086481f9284fce6a442fecd5bdb31","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.19.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.2.36_1678291020831_0.7002185309136435","host":"s3://npm-registry-packages"}},"2.3.0":{"name":"element-plus","version":"2.3.0","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.3.0","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"c7492fe7b604eef60163d4e900ab074ae22bc553","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.3.0.tgz","fileCount":6408,"integrity":"sha512-3s3JO4+LHLi61tFwF2emIHx6nxwKKdj5YWcj3GUBoXKhbuRjhq6xqaxWpBlPk7jySr/8Eci5++T2THbvrpGn7A==","signatures":[{"sig":"MEQCIEoT4iSOqS18NPaAad2lzNgRoXpBu5BWdzAdjpTZmcRrAiB2V4ThGEF3Ch0bgRTA8N43oQvH7mTFh8Y0PPMiPn3SAQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":85511065,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkDn10ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo0qQ//R98roy0pZ17fBOpQsj28TKVzCK5Rbqaz+MING4Fw3I6jF6Xl\r\nYVZSINim9lf6zRBvTRYFnwUuk7N+HYyow++aUnFxJKHgH9/yjEZ3B2lpjUNa\r\nUvsStQYDowUIkrmEYxI1ej4WdUIXOTUTOw7Bxrvc4uDr2brqcIhxbG+7+Yo2\r\nOuND92f6QbQuVVJDsW/7EI138BbfRSnlGn/8EugFxkhSyqYMdSpZ/BaJ1Ek5\r\nmAXl6H7gDIjVjdZF2O1Y0ju9WhWcBeJPjOnQAGP1hMo+nCg2bKmaMOyEBSsZ\r\nbfcr+YO2dBHwBaRaMtkiLjE5A+WWoz9nVR1W9JiG/YJaVZc/FWWQ790k3Wd8\r\nTs2djZr/6oKXHUItmXeFkIJ0ueILWz9BsZogrfwhiDv3YVnFc70ig7aFr8hx\r\nWu15nXBQlvTvXfmCw4n2UFZhNWA4ab9L9fIqi36iZ26Tgr9Ju1rz7+Un4T1v\r\nNVcmOoVeDcKCjfs9BYOCsGpYfDnimv/xZ6oZO49eTmrloHI2Fh1lbHDqio6i\r\nmD8gHrqFVY/NdPCTGmezilt5MOnpaGO3bLDlh1rrzhj5FpoPPps63f7jIsSI\r\nqqPjrLGpqEKLrV0pHp4ZlUmYmFayjja2oiRWnFo0AErDEzf9o4jvJN1m/QbW\r\n9v6C3VUnRx6CsbyumpKhruwvu+ggUNRiT28=\r\n=Rtv8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"df7acd8df503833a37008984384087f308a54bbe","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.19.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.3.0_1678671220343_0.9171625041740581","host":"s3://npm-registry-packages"}},"2.3.1":{"name":"element-plus","version":"2.3.1","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.3.1","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"e4e13c28702709583ab978041145bc1367844842","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.3.1.tgz","fileCount":6408,"integrity":"sha512-IBS7ic1mRyDXpOreRkredV4ByZSuax5HPb0zNOHm4qwKC4wm927yQv+Is0JbzxPzCW5zWaV4PLy9/Gl3E3v59w==","signatures":[{"sig":"MEYCIQDVxJhHUIjvvFgs1bRR8++McH2UdViMvNPOHaKwXx2kmwIhAJg45trJs4kexVYf85713tjojoTLYUYPP912VgxSmBv/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":85531025,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkFonPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp20g//VM0gd39KWNcMbceByB1WV4EsqGy/qBt4koRBT/kJmDNBO5Sa\r\naDRJUuh0jBAgveKlCNZ36BKKfLDROFzEJE8HxQmPh8TiVJsAiSAufpfYjxlr\r\nwDHAD/ljzisaA57NX1C8Ki7zwI/ZmDRLD+HhQygXRD4d/dBUayDY22OvG3BY\r\nLJ2PGdeEcVrrDUMkxwM2wNifiZccG+H9wxQR/zvLYF+bYcS5pzv00gXdbn+Y\r\nX/5o7ULLCRgQbF6rF9o0oAzEyBWY7PQKb/e4Vuar7arV8HHduinkHTYGffhc\r\nrXswbtAeiXVNmEqcK6pW8+AXzeIw65wVht+QafPW0yGoMWCJEz5GsQCzOax9\r\nRsT02Qh97aicRuYWEUZ94Or4RiioSFnGoLEgNh3vt8NGf/Y7t0y80SeXV+6N\r\nwJoKx/c017MfSg1rFN1vjN7dDabgHGNd5DRRyiZuW/N/iudkdFbyJg9U6Q+7\r\nxrUpnfsrIFSwuewscoLh7wGHQPlZtnDrSU0O4BO+jWS5ZdESIda1W5dgNNRm\r\nROwJg7CBpaE3/7HB33O8vM7u0H75RBW31yOWqHfGBNBngUA+IwPjLasobQi/\r\nsGFm7xP01SP2gTX501EVeKKt0dHX5TRANGY6jIxT5861nJQZYd3wWZvY8s2T\r\nE0eiBRNUteITfD24YPrPwoEV5auizTLxWPg=\r\n=im1a\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"54c4e153613a4cab2421b4953fd13a5627f3ce6a","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.19.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.3.1_1679198670732_0.5797821524999347","host":"s3://npm-registry-packages"}},"2.3.2":{"name":"element-plus","version":"2.3.2","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.3.2","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"93abe96bcd5d00e96ef281e8d148391d698fb6e3","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.3.2.tgz","fileCount":6408,"integrity":"sha512-NIK0QckKKagdlMm3eLoVoD4Lkfj5ECzpZAxwrRLdm1Yi5qiTU9Guor33+IbIa52z4gHMuhMxgSVS2xAGmjLHsw==","signatures":[{"sig":"MEUCIQCHXpLJEFyUmFjom5wEvoEkHJyCEhZV+krfVRlZ5PHaLAIgOZHZBFDjA6rtYdASXNpKVPwKae1Y6vE7NLN5up8HoLI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":85569239,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkJsENACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqyYRAApKIwsUz4niyqUl4690+zZSn2u535Rd2OhKT169Dk+XWgqNjQ\r\nLjGCF25aXzlBDO1lj3M1b+NrvwBS04kD3lYY/4Nvwba0VXCw9tPWH4JQmGPl\r\ntlXL8kXpCQoBXL/hdZwVLGPtnpviM2dg0X295WkaQeqw3WNv61AHms7QKupt\r\nzF+ZdT+u1vNUdvh4hbEyJ8tK26g+fnLBOJZwKihvSKN+iunwBRCmgbNIPqHy\r\nAFpWTNqnxdNSQtVOJwY+wz2axLw59uR5kx9q6lx0tXLH7ZqDUYueSLfpGyFq\r\nSntV+9LTHEp5X0l2Qiyv8fT9twMC/TLNeAbxuYo+lpJ2XRPm0PxEfuvX6ai/\r\nRBu68n3X3Obn0zLs1Ekgw/o58lVDbuZVWD05CtRIxAUuimXO2NEA9DeXJ67D\r\nSDw9zFbF02AkIcfW3ub2uoGjyU625G6CvvrXx6IxTzGVM+WrXHXwFg+LsO3D\r\ndNB/wV8JsYPo3dKJWIGLtTHFJrHb38Bn/OPm7+VX9YAOkUkvilJnDGWTE4Kn\r\n7jbRo5j0caww7XT0WszyZCuQ6B095RBSdbXxZHY1rT4p5MVnL7jMLNFaMS88\r\nYBAm+960bcbrjxnxS++34ma/DmnaGAARwBaiXAY2XwOUGEi9xZ1ZKPr09lEx\r\nQ/ACx8XY9I01ESWizW2AApPhpgpNyawo3+c=\r\n=41YA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"44d39ac0248606b1ed087a1e06404c0d3f12bbd6","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.19.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.3.2_1680261389355_0.5975044311873698","host":"s3://npm-registry-packages"}},"2.3.3":{"name":"element-plus","version":"2.3.3","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.3.3","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"33173bbbe84ada40f4d796fe5043c44781198ea4","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.3.3.tgz","fileCount":6408,"integrity":"sha512-Zy61OXrG6b4FF3h29A9ZOUkaEQXjCuFwNa7DlpB3Vo+42Tw5zBbHe5a4BY7i56TVJG5xTbS9UQyA726J91pDqg==","signatures":[{"sig":"MEYCIQDBEJQVXUbpsQ8J4XDFrnE9N/jwEcVjnbfvmHi2q//nRAIhAK+LvNWYk+SgsEtPIXBKwTziSXcKsNsTEUFt2/wRD6On","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":85586672,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkMAo9ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqS6w//QybMhpxTc4i7l7DPNz7ae6aeOtsDQvcZL9zSYjOU+57/Xjut\r\nlWbVjURLz/HM/2B2GTLZ9fflxcOn7vzlWW+NPOzDly3IzI0c8nQQdJKUEAEB\r\nAI6YNzRDMt1R7Z7B+BZExGQE5SP9nwbdBLBJqu94UnFpXitbegBSC9m2pFWK\r\nW6z0SUeG78MdRhRYu2HkhOQAu4L93mYSB6hLeZF/x2/c/zT+a02HaXSXdlgn\r\n8Jeq7+Znn6dFjEQ1Qetm/RD9+UYE7Nfzo2LKVA8MgPlamjShh5VKB5ytHOz/\r\n2eKQ1UfJjtoWq9OK6s9Cz434QcMqFN7i7pLMHMiNcAX31pJEvppmkV+wZjmY\r\n0GUF11uuxx4TXNC2C6N/8doHDCUUb8MLv2XFucb2/tjgra5n05MJFL4f0EKM\r\nlcYJl292PXRIvGTb9wgbC5/hOkkjTAmYyTVU5qM9P3AbqNQJ3UAYIIBaTXiR\r\nTLoFZBwuHsfiPDQsd4O9gnSt/Dmthre1VysI0AdRdlcKJR2/K21+ar6Aw8zh\r\nxQc6bvrqSmHHAQRzAi/4viuSlYoeKEX8+vPerc234ToSGoABeSno7mPAf49F\r\nGGyGu6PHSQ93I8cFe922TayxBwkShy1a926z96KLb/xFKMNx3LzRVlIc0WQp\r\n50+a7zYPOzQeEhn7HNoQzObq5H4DglCkYIM=\r\n=ArTo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"5a27b164cc8d3b1d86abc9a203c39a08bc9cc76f","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.3.3_1680869948911_0.49447874383971246","host":"s3://npm-registry-packages"}},"2.3.4":{"name":"element-plus","version":"2.3.4","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.3.4","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"4319f6b0a1096cfac9c53b69da2fe23ac5aea63e","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.3.4.tgz","fileCount":6414,"integrity":"sha512-SQr0J9z7N4z48WYk/l9NE2tizl8Q7j2OhqlpTc42k4pGncry3+rVX6dsmcsglFynn6vt3NzYxWJqmLFyDKQq+g==","signatures":[{"sig":"MEYCIQDRAR0DkdOHrGLrpxtMejcEixFXzBkPGbAOz3VlfJJrQAIhAL+SQoFwnyz9wIf/362J3deKgg7GCLMsyoVxdSueNlzk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":85721200,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkRS3bACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrbQQ//YcmYGaBTX7xqJbR3twSGd2eKG51znURXGcEZM+cRZlY5MfMX\r\nK/8ZkgJ2avhdPLx0bizc3xBxC2firyNrXx7LGZE0uwCwW15RJFO0HkKewEF7\r\ne7Xb43KO6aAqCI2fcLxYxJFJm5SoJtUy5u4Pdtjrko7Q1UUwn+npMSptYvxx\r\nm6iHqJhXGe9YsmqsinXVru3MkLW49IXajdiUR0kOHex62nQpX2zmOnO2ufed\r\n+CtukVVCHJLt411Y7h2Mzd4BmeXYQOFmnIpC0r5MDPwN9v4aj87L1gU5qBQJ\r\ntV9qXsJmoxQN5UMBhlGC3ytK1V+rBUNNDpPYHViyACqeMUyMPlNe1TtyNTzb\r\na6PFvLZwI5+kAps5OiQ3IkVBQ33+8uKX16RsP4ivzNrrplOEtXHyPkpYGbjp\r\nzflbe49mJfCkYsEpfY01h0GqnGaKGQE6qACgZO2AFnHFBwwqWn8wotezpYGP\r\nd/LWbJflXFYe7Of/jN3mOHlE1pZg6VdtClbhht750NpXHAUrqewer8jnFXI1\r\nBKpeBZVDhMYvVAi/hmQS7CcuMGKFcbSlYXMBDXO5X+e6sJTYpKrGuM28iT52\r\ni2vF8fWmZDnmRBFcCGLYul/od9yVTyxuMtOdkMc6YR/tCPatyHUzASyH35wb\r\nU0dK4ktf6hKF1VQjLa1uelzB1DhZg6hILpw=\r\n=/4He\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"61e6c416b70545f914c4ac6e21ea4fd0ddb4dc72","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.3.4_1682255323247_0.24399505764581098","host":"s3://npm-registry-packages"}},"2.3.5":{"name":"element-plus","version":"2.3.5","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.3.5","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"5b04de44fd0ee1bd29ad6ed971d9155982cc1295","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.3.5.tgz","fileCount":6414,"integrity":"sha512-g27DHm2C5/tPwte9H6Juu+JOdzT9z1ALHTIvia6MwnBdCrI4kd77o6KcYdodU15/tYiPBoCEmobhl/7GUDb+1Q==","signatures":[{"sig":"MEQCIFOIPDxH5cvvBN8d5Ob5ckswFCW7Q6czdBIME3/xz9JfAiBJeoIr0PQHiYJ9VP42ljgG4qNd0ngbPbBosl6IORvuoQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":85797599},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"f2890123be5525891d6d77116c4667a193fc67ff","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.3.5_1684499027466_0.5669642137633093","host":"s3://npm-registry-packages"}},"2.3.6":{"name":"element-plus","version":"2.3.6","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.3.6","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"848f8834ed70adfbae8f4dec5303a9126d472d28","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.3.6.tgz","fileCount":6408,"integrity":"sha512-GLz0pXUYI2zRfIgyI6W7SWmHk6dSEikP9yR++hsQUyy63+WjutoiGpA3SZD4cGPSXUzRFeKfVr8CnYhK5LqXZw==","signatures":[{"sig":"MEYCIQDA0rhHBSoXb2lGLRQ1gqLhe/166kJgEZFRmklBtb3fmAIhAMJQnzuLND4qvirW6NKDpI61Ea/gJERik46cA/nN88+W","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":85784057},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"68a75a0d1f97c2b679b3549403f5f9757ab013aa","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.3.6_1685683924451_0.36793745244016773","host":"s3://npm-registry-packages"}},"2.3.7":{"name":"element-plus","version":"2.3.7","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.3.7","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"544a127f0e65f51715e3b24ec3ebf545c46859cd","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.3.7.tgz","fileCount":6408,"integrity":"sha512-h6TxclbaLUJxg/Bv5j/ZKsK+K5yadQliw5+R30HWyE69pXlqXTX24oYx+yw3pA4Dy+lqEDi5501FQ0CORk3OSA==","signatures":[{"sig":"MEYCIQCpzEjC1Hcd6GjDCWQl83cGRgLLTqmTDR+ff51grzVskQIhAK8XBbxCQguqnMJcTQaFvV56vVafkQ+AuJgJkIsPWGNS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":85833467},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":"./es/index.mjs","./lib":"./lib/index.js","./es/*":"./es/*.mjs","./lib/*":"./lib/*.js","./es/*.mjs":"./es/*.mjs","./lib/*.js":"./lib/*.js"},"gitHead":"8bd65257ed67f0aa4c55eed168cd149a7911c80d","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.3.7_1687327935167_0.9388861599534088","host":"s3://npm-registry-packages"}},"2.3.8":{"name":"element-plus","version":"2.3.8","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.3.8","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"46032abe1a712abfb65932f146ee19281312a9cf","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.3.8.tgz","fileCount":6414,"integrity":"sha512-yHQR0/tG2LvPkpGUt7Te/hPmP2XW/BytBNUbx+EFO54VnGCOE3upmQcVffNp1PLgwg9sthYDXontUWpnpmLPJw==","signatures":[{"sig":"MEQCIDR/qBTfUnR/6sTE58qy/GpVs7M0+3QkZesEtI0CJMJTAiAK6hCjmzVe5SHwn7q4bzhZeRnQHmImxSubAX3bG8stUw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":93610005},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"ac65e9ef58b96fdb1fcc40d13ad2b126133c1a75","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.3.8_1689305453831_0.5196691987081872","host":"s3://npm-registry-packages"}},"2.3.9":{"name":"element-plus","version":"2.3.9","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.3.9","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"4a3363c62e6cc9b0a2f40f4df5aaa7b6feb4e6e4","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.3.9.tgz","fileCount":6426,"integrity":"sha512-TIOLnPl4cnoCPXqK3QYh+jpkthUBQnAM21O7o3Lhbse8v9pfrRXRTaBJtoEKnYNa8GZ4lZptUfH0PeZgDCNLUg==","signatures":[{"sig":"MEQCIDnDb/kayyFSp5Q34DBRNG59CRikAqLUpmTzxs7Up6MVAiADq+fT2dyeMBS5PnfUuP/Ukz9SKwh9C4Ku0WV2K9UekQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":93657309},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"8b083b454e966f4812852992b9c618e0ba68c8f5","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"8.19.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.3.9_1691140098024_0.8164479522588142","host":"s3://npm-registry-packages"}},"2.3.10":{"name":"element-plus","version":"2.3.10","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.3.10","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"0f185c58a4bde468d90e20ff86925e0ba152b5c1","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.3.10.tgz","fileCount":6426,"integrity":"sha512-YeBT+AZBTvMbEqxGutGgbdk0XbHF8SBh092SDVROllwDWDeX7uhD441WFs3qA+wfu0PQp8qQHem8e+IZ6yhkNQ==","signatures":[{"sig":"MEUCIFcAI6DzCbXwfNilS9V21yeVThgOiN9SricY2BGL6YJFAiEAm30v85Dp2nwEBlJzotDRk6w1ZJ5Y1o5gLBS7lN1Jjrs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.3.10","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":93725414},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"3d79828513b74b26742e8396ffadd850cf665b34","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.8.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.3.10_1692940330286_0.0951785568290966","host":"s3://npm-registry-packages"}},"2.3.12":{"name":"element-plus","version":"2.3.12","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.3.12","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"d3c91d0c701b2b3e67d06a351cb0c42dcc46460e","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.3.12.tgz","fileCount":6426,"integrity":"sha512-fAWpbKCyt+l1dsqSNPOs/F/dBN4Wp5CGAyxbiS5zqDwI4q3QPM+LxLU2h3GUHMIBtMGCvmsG98j5HPMkTKkvcA==","signatures":[{"sig":"MEUCIQCrBbTgzXkkNflFDqAbYKkxiFjphqP4P5trp80uPUiVkQIgTYdMsbPB0S+VLx0FKK+Q9aOhMUjy5K6mTBsXPcmWDmo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.3.12","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":93725211},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"89d4ec863ce55fc3de2f0513631e76f695f8e791","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.8.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.3.12_1693042354979_0.8244389949487947","host":"s3://npm-registry-packages"}},"2.3.14":{"name":"element-plus","version":"2.3.14","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.3.14","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"302a23916b0c3375fcf4b927d7b94483dac13e1b","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.3.14.tgz","fileCount":6432,"integrity":"sha512-9yvxUaU4jXf2ZNPdmIxoj/f8BG8CDcGM6oHa9JIqxLjQlfY4bpzR1E5CjNimnOX3rxO93w1TQ0jTVt0RSxh9kA==","signatures":[{"sig":"MEUCIBNEGDu1EaxuG1O3LorXFGEnT6GFdexCm+l9tcQHSEqLAiEAy8TsWc8rRoVQyfXhTwQ+5iHF9IxUzX14j3Bl+mP4ml0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.3.14","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":93831868},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"165df8dce699f185a1440ad055964f27c5cec3c5","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.8.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.3.14_1694690369503_0.436803808785843","host":"s3://npm-registry-packages"}},"2.4.0":{"name":"element-plus","version":"2.4.0","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.4.0","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"e79249ac4c0a606d377c2f31ad553aa992286fe3","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.4.0.tgz","fileCount":6474,"integrity":"sha512-yJEa8LXkGOOgkfkeqMMEdeX/Dc8EH9qPcRuX91dlhSXxgCKKbp9tH3QFTOG99ibZsrN/Em62nh7ddvbc7I1frw==","signatures":[{"sig":"MEYCIQCh3h+8p95QvXRXA4bf0pVWvi4fBOvL45QkICt+TXQmcAIhAKbihB7uGG+mtNEKkBnHOJjpO3kQyedPUE9Atwel8nBu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.4.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":94443078},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"8d0ccbc08d97af3c332ea1f53153fec935cacb13","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.4.0_1697183590586_0.9495596049737158","host":"s3://npm-registry-packages"}},"2.4.1":{"name":"element-plus","version":"2.4.1","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.4.1","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"8a5faa69e856d82494b94d77fb485d9e727c8bc1","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.4.1.tgz","fileCount":6480,"integrity":"sha512-t7nl+vQlkBKVk1Ag6AufSDyFV8YIXxTFsaya4Nz/0tiRlcz65WPN4WMFeNURuFJleu1HLNtP4YyQKMuS7El8uA==","signatures":[{"sig":"MEQCIGttnAELKHTMqJgO3eau0e51mrNsGwCssC869r8DHrkqAiAy8y3w9dUc5Zi+c4zXTNycWHfE38XnEG95fCjSxbvCag==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.4.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":94461392},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"d6a8fd0ceb91b2b302bdb5022a47ac446ee2c563","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.4.1_1697605974783_0.22978131784946187","host":"s3://npm-registry-packages"}},"2.4.2":{"name":"element-plus","version":"2.4.2","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.4.2","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"2a24632e0904ccd7bbbd64c269704f6b9969833c","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.4.2.tgz","fileCount":6492,"integrity":"sha512-E/HwXX7JF1LPvQSjs0fZ8WblIoc0quoXsRXQZiL7QDq7xJdNGSUaXtdk7xiEv7axPmLfEFtxE5du9fFspDrmJw==","signatures":[{"sig":"MEUCICTKpd5zND1Y2LWJH543eLVNfQr1dCwvimITuAPEjtPdAiEAryqnAs1d/JEbZgXUxhIenVUV1cgZiH/MDHFnHYsbjy4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.4.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":94611771},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"6c9da6ab5f7bc2d04a6fa5940d185f69aa916e89","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.0","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.0.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.4.2_1699004093477_0.1887470182866835","host":"s3://npm-registry-packages"}},"2.4.3":{"name":"element-plus","version":"2.4.3","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.4.3","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"ff21d0207d71752eb6a47a46609bc667f222841f","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.4.3.tgz","fileCount":6492,"integrity":"sha512-b3q26j+lM4SBqiyzw8HybybGnP2pk4MWgrnzzzYW5qKQUgV6EG1Zg7nMCfgCVccI8tNvZoTiUHb2mFaiB9qT8w==","signatures":[{"sig":"MEQCIEClS2LqppV2YW288NxuWCCPWVE9dZVgh3sWOaoNY7EuAiA34vr4Sw10w0aYMOTK+uwUsDbkf60zhxm5QHqaznb8rw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.4.3","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":94370100},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"4f6abb9e5117e87234516f7156aac7559340b252","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.4.3_1701077640458_0.7691171366357152","host":"s3://npm-registry-packages"}},"2.4.4":{"name":"element-plus","version":"2.4.4","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.4.4","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"962be40b4843381af04b8f799bfc142072184b8b","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.4.4.tgz","fileCount":6492,"integrity":"sha512-TlKubXJgxwhER0dw+8ULn9hr9kZjraV4R6Q/eidwWUwCKxwXYPBGmMKsZ/85tlxlhMYbcLZd/YZh6G3QkHX4fg==","signatures":[{"sig":"MEQCIF5agUY78ub5dkEuIuaQpVAero5qS+binWdsQ2mIERagAiBj2ivadN5omhPW2Jyd0hKb9aPJSgZ/hfY5v5NG5wQ2wQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.4.4","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":94403870},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"01b2d5a142021ad8d2d1e606411fcafe04041679","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.4.4_1702644737349_0.38496734302431657","host":"s3://npm-registry-packages"}},"2.5.0":{"name":"element-plus","version":"2.5.0","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.5.0","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"f59a9dccd650e35ef97f640f896ac6c3f0b3fe6e","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.5.0.tgz","fileCount":6611,"integrity":"sha512-NE58a5Exf0/vxgxRRR2Ibs7AjiqB72lMrg7plmSoZwgZy17IQAWgzOe7ZyRtEQM/3q3BAuJDTUUAuhP/mKVPKg==","signatures":[{"sig":"MEUCIQDPtoNNJMP+h9PDfnxu6zDEnlfJRivyHtmz05X09ClwigIgJMYn5YIFpKA8nq3xBl6l0a2W5miQBTY3U9mZKRW3AUU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.5.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":100415947},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"36c686ac860747020545d8d975ed100b669f4a7c","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.5.0_1704889045993_0.32476615008381216","host":"s3://npm-registry-packages"}},"2.5.1":{"name":"element-plus","version":"2.5.1","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.5.1","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"ab54c77321728f82740c1adbce288a129147c64e","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.5.1.tgz","fileCount":6611,"integrity":"sha512-ylX9h2U125/nesPlLWgfPkI1rID9EiGROlgf0QkzBUjx+/d4w/YqS+IqZZZC5yvQPhKYu9aMDqEBzOurwn4Cnw==","signatures":[{"sig":"MEQCIB/1ilVfko0CwljuYlcvI4hTHD8eu5yDKpKFyEaiIkytAiBocJq2G2nHmfNFXXHioaIiocdDcbPW0UXf+Dahay8fsw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.5.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":100423392},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"3635bde725d467db64fe4dca216972a4d91f9827","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.5.1_1704963816151_0.0936183816591587","host":"s3://npm-registry-packages"}},"2.5.2":{"name":"element-plus","version":"2.5.2","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.5.2","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"8523e48e67f84ea434f4026b2a52d08e79230d26","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.5.2.tgz","fileCount":6611,"integrity":"sha512-0Xbihy5CvpdH+OZeRPnZlfkbZS8uyLvHJiALehvw6n7nvHGrujCmdiw8NXvYhkLpRtwue/N6oBfAvMJvQSPoNA==","signatures":[{"sig":"MEQCIGxc8dN+pFm/ZTMUvxY6fHG1FoU1P4k0O69yQHU7NG49AiBrfN1F3IhBKGIq+cLZjRmowm84Z3EIgVHe3ZUFM2IDyQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.5.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":100496337},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"e08758d7bc2d9cee58434007e81c96a779f1912b","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.5.2_1705651148057_0.757903054881756","host":"s3://npm-registry-packages"}},"2.5.3":{"name":"element-plus","version":"2.5.3","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.5.3","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"d4f8988ea199ad28ef15a6b0b8f94b7639d262fb","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.5.3.tgz","fileCount":6611,"integrity":"sha512-wmtstxaMkD6UinIgD+45CjrhbRh4u0vt+/GgxfPeMLt5pDpIVwZFjkUaVcWqqxcxd5a80HP3XlDF74fW7wim9A==","signatures":[{"sig":"MEQCIA3TaBCGqPKObO5lBsC/8XxuiqPRHjybzhfG5q+8qQCTAiBH9I85OUj+e4+xmC99fUCdobhjBRwBmXiXZ5nMBCDn5g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.5.3","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":100496065},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"104a712fd35b6ee6ee9421650813df58fbf58926","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.5.3_1705935280191_0.8215449349682973","host":"s3://npm-registry-packages"}},"2.5.4":{"name":"element-plus","version":"2.5.4","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.5.4","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"c78c44cd6126e65c7f8d58aac664d688cc921e24","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.5.4.tgz","fileCount":6611,"integrity":"sha512-3z2BQ53B93wypOLFq+vmT2XibTGRm3WODVPdAGymqTVGRIeUfFh17ysymn81ZvEVs4b8Dq6Fxr3I1B/9NUwZ0A==","signatures":[{"sig":"MEUCIQD9tJ4gQ6cCdIV1ZB1fFLcm3xM2kubGpe0kN+HCb9WTWwIgJK2MtK+Ec6jWqZxACd1aJ1mB4ybXOGmxcYEs+Oe4cAw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.5.4","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":98792350},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"3d9db5d6951ac644de7ac4debda4917e48b4bb69","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.5.4_1706860919627_0.4689157520929381","host":"s3://npm-registry-packages"}},"2.5.5":{"name":"element-plus","version":"2.5.5","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.5.5","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"23f13ff5b10f6767481de6e6b5968ee751ba0091","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.5.5.tgz","fileCount":6611,"integrity":"sha512-yGU/MruLOWI0ImQPFCyFM4cXtHtILJNAi0hhLImcxjRukjgQLYNkvcvbwqNgBUt808KSeKF9MyxENFyBQLTg+Q==","signatures":[{"sig":"MEUCIQDXQp/5vTkhAoRaZ+fz33ZmxCZdkz46wWVO+N1KAEnoywIgPEfiFAoSj4aBahuXS56e0vAtyVUhFaAk7/pZXkYnZTo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.5.5","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":98792403},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"ea1afa156e903e7f2d0d40ac405ce7f173cc10f2","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.5.5_1706935727542_0.8399464797987075","host":"s3://npm-registry-packages"}},"2.5.6":{"name":"element-plus","version":"2.5.6","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.5.6","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"d63dabc6330c0e2abe6f97cf99013a30140940d1","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.5.6.tgz","fileCount":6611,"integrity":"sha512-zctKTiyIDmcnMp3K5WG1hglgraW9EbiCLiIDVtaMCS5mPMl2fRKdS0vOFGnECIq9taFoxnyoDwxHD81nv0B4RA==","signatures":[{"sig":"MEUCIDwAbjE3oT27iXTIBXhnKIfY/loc/O6LvTZn4T1yO7gyAiEAixDuWKbZ65Yobd35XYvxynZjLIgy64dOetr+vL/4sMg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.5.6","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":98998466},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"739b418793a158a2fe77d318c626834142a22603","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.2","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.5.6_1708245258284_0.4031504244222006","host":"s3://npm-registry-packages"}},"2.6.0":{"name":"element-plus","version":"2.6.0","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.6.0","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"bba8707780ee4612f8fc05f397e2b8b71510ec62","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.6.0.tgz","fileCount":6693,"integrity":"sha512-MP+N48P+diyndR+GjY+0VOrUmFnajD4U0CkrXIMzmeRmq4+dwi0bdzVo587v4wDo9Hs+ggviyacqm3NS8JYVqw==","signatures":[{"sig":"MEQCIDboUKzaTBCQ41U3MkH5p7BW6fHoYQn1h+B9jBxTq4zeAiABnqouUs9KjKBQes31DT9XGhsyCPhhN2B4NwlqOAyutA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.6.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":99422796},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"4afdf04687f22247e0cfd8d47c47e3c1b27352da","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.6.0_1709280513402_0.25916123453166273","host":"s3://npm-registry-packages"}},"2.6.1":{"name":"element-plus","version":"2.6.1","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.6.1","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"d65a45d2b01cd8566fad6573e995ed40d6d406a4","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.6.1.tgz","fileCount":6693,"integrity":"sha512-6VRpLjwtIVdtUuITJPPKtpOH1NM6nuAkRE3q5O4Lrx0N1bYMhTkiqb2Jy7zfQuDPbOIkkF2OABTzegpNnzgsnQ==","signatures":[{"sig":"MEYCIQDdQMGDhJD9P+RxgFnrrTCTI7y1/kViFUWYx8CVtruyWwIhAJvPXg3ahtbHSXNR4bQwjL0i0smvYf/rLnSzTEALjdr0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.6.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":99429707},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"a9542331cf23114c813cb8a4691b0574a39bb014","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.6.1_1709884211207_0.06851212630906645","host":"s3://npm-registry-packages"}},"2.6.2":{"name":"element-plus","version":"2.6.2","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.6.2","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"975c8a128f3977788105e64bf270b5200a1c23ea","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.6.2.tgz","fileCount":6693,"integrity":"sha512-WFMv1v83l437Xu+GeeM+ytxd9VUQpR4418BowvTVIPYItsoj6yK0ITIuSv19iCesF405FbAOaCIHXhJch0ilFA==","signatures":[{"sig":"MEUCIQDcUEk6igRwAkiG+1rtdTb7OjCiFtFluwVzYzuaT/bbcwIgDTDAeh6g5TsHN2Z/1GYYR7YSaPMhXPXydb2R+Gnr1IE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.6.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":99486566},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"c41e9dd949c99a7b25050e55f8d4b7eb87658d71","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.6.2_1711120354852_0.9207243994165404","host":"s3://npm-registry-packages"}},"2.6.3":{"name":"element-plus","version":"2.6.3","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.6.3","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"15e82e7dc0646c5d1e01b508d0e577d764829b1c","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.6.3.tgz","fileCount":6693,"integrity":"sha512-U4L/mr+1r+EmAUYUHrs0V/8hHMdBGP07rPymSC72LZCN4jK1UwygQYICegTQ5us4mxeqBvW6wfoEfo003fwCqw==","signatures":[{"sig":"MEUCIAvQE1A/wbLAeXQ7DSkjCVuwHnvjNU+cnuHrB3nousd0AiEAnWV/Mb9CnVDDIellCZrokAt65dtjXsN9DsQ1Vay6hbg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.6.3","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":99517580},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"9fcd4a3c239b19ae2a79bbbd17d1532f6e2b3650","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"16.20.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.6.3_1711712278842_0.2531751113514513","host":"s3://npm-registry-packages"}},"2.7.0":{"name":"element-plus","version":"2.7.0","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.7.0","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"1d72b06946c46a6f18e5315610b7f0147b8efb24","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.7.0.tgz","fileCount":6737,"integrity":"sha512-WAiaFLavuWFxof9qwkC27jvkh9nRcNnB506g1vvJSiVaVqjCBWUFCIyJKeN11M1qcv2cS5VV5PfSLjTIkrw87A==","signatures":[{"sig":"MEYCIQCOzSzeGIobOfDkIzVYcPQJmP4kEwNuUkM36W6wLlkWtwIhAI7wS5JfASFj2EeY9Ox0C5mRaDwH5HuyV9deN7rzXy8u","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.7.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":99779493},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"02b3617a67767a5370f123d943062ee9f2f1236e","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"18.20.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.7.0_1712907292061_0.8411044741586948","host":"s3://npm-registry-packages"}},"2.7.1":{"name":"element-plus","version":"2.7.1","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.7.1","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"c6d7328e9fa72bbb29751874b6e439b693c1bcd4","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.7.1.tgz","fileCount":6737,"integrity":"sha512-yk/vXFwJp0flMrd2kfcR0XlumhwtPjB19HJvwcf0n3DvRE7UK8LeSK14LVghSzk0TzPsFFElweMnZEEv7+MYuQ==","signatures":[{"sig":"MEUCIAXDzR3BYPcgkFo7Iffc8jmEjA2zNQWIk8dC25hx4eGbAiEA0b28GIDkYAhmhxVz14cum1VxJYhQXqbQ2VuC+oD/nIQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.7.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":99822735},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"b0ce448b4dc7c8981ed73bd2554f4dbbe05d1446","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"18.20.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.7.1_1713601452115_0.6018781782435425","host":"s3://npm-registry-packages"}},"2.7.2":{"name":"element-plus","version":"2.7.2","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.7.2","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"a5361ab0de49ea1e3c91955e4da3916a358b3bcf","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.7.2.tgz","fileCount":6743,"integrity":"sha512-AdEzBU/A68iUleio0MkQ46JeU5SeQvFFd915GJFScJmUEo5AmYg3OQ4pVjcu+p3b3Nupg9MC5Wa4xjAiC51kUg==","signatures":[{"sig":"MEUCIExpRgPMKemudOXolp1DJwwIX35tPh3n4uLrpW9y/bAFAiEA9SXTf/hX1Eku3iu9Fz2v4rP9IDruIKXUGybf9wzf0wQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.7.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":99810153},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"e5fce0f01b0fbf1ea39261222effb838c6d40c04","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"18.20.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.7.2_1714119394934_0.7802576866315454","host":"s3://npm-registry-packages"}},"2.7.3":{"name":"element-plus","version":"2.7.3","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.7.3","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"2266af776927110ad0d347211acbd914159eda20","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.7.3.tgz","fileCount":6743,"integrity":"sha512-OaqY1kQ2xzNyRFyge3fzM7jqMwux+464RBEqd+ybRV9xPiGxtgnj/sVK4iEbnKnzQIa9XK03DOIFzoToUhu1DA==","signatures":[{"sig":"MEYCIQCc6nKzJVuoyUJUu+gRAWiPRNiPY8EQkSSlgzzzcYii4gIhAJ/i4CKqNwsKlaUJ9j8DaKugHqB6V/lBfk3AXDFgzNwh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.7.3","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":99812042},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"df8cbd7b1afcfb2abf394e4f8705685cf5bb2974","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"18.20.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.7.3_1715600502385_0.26660146633735127","host":"s3://npm-registry-packages"}},"2.7.4":{"name":"element-plus","version":"2.7.4","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.7.4","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"1d649e15f9db7d8ac1eb45198d19f59069fffbc8","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.7.4.tgz","fileCount":6743,"integrity":"sha512-ADBN3zHdhg8R9m6IXR2B5txSWvCn1+nAD+aA9kaJ4rZHMr37DVX6EOdwUjqAMPKz2xC0tculgkJ5rh5zVNiDNQ==","signatures":[{"sig":"MEYCIQCgiKj1Xn9yXwlAmTHQSDKZrBc6ziPVUKD/Rrytnrws7wIhALxkTs+yykfYNx9DnERlY7J7Djp/hHNdUsXrJikgwGJV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.7.4","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":99702658},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"395eef7ca0ffbac5a4bf89500cc6103055beb853","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"18.20.3","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.7.4_1717160596418_0.6596420913972323","host":"s3://npm-registry-packages"}},"2.7.5":{"name":"element-plus","version":"2.7.5","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.7.5","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"b6b3101f8c2c61b083c78cae2d8728b93a85039e","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.7.5.tgz","fileCount":6743,"integrity":"sha512-e4oqhfRGBpdblgsjEBK+tA2+fg1H1KZ2Qinty1SaJl0X49FrMLK0lpXQNheWyBqI4V/pyjVOF9sRjz2hfyoctw==","signatures":[{"sig":"MEYCIQCeaYLoXNa3v9FedYsMqOt8Wql/UbOU7zdrQdI/C5HFLwIhAPY4p7I8pk9mbMYdp6WrI+ajJsjkRV5Ixqtai8QOWTJR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.7.5","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":99702819},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"333ba213615a4dfd140c766c141c0361ce991ad4","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"18.20.3","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.7.5_1717761547374_0.05315675747967141","host":"s3://npm-registry-packages"}},"2.7.6":{"name":"element-plus","version":"2.7.6","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.7.6","homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"09b2c9c1de46dcc6778d37a29d9c0948ce40d635","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.7.6.tgz","fileCount":6743,"integrity":"sha512-36sw1K23hYjgeooR10U6CiCaCp2wvOqwoFurADZVlekeQ9v5U1FhJCFGEXO6i/kZBBMwsE1c9fxjLs9LENw2Rg==","signatures":[{"sig":"MEQCIH4YIRNZq9pLauEZ8kJ8x4qImwA2/dRL7lW769ORifaVAiBTqAB2CtEQutFvKoQeXLs/RW7DMwNls7UCntYNjEYo9g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.7.6","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":99732702},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"3c420f4429c462c8dbba7b94b1eb134c349cc3d6","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"18.20.3","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.7.6_1718983173673_0.4957731205303386","host":"s3://npm-registry-packages"}},"2.7.7":{"name":"element-plus","version":"2.7.7","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.7.7","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"317a4b826d577f4572ca040f2568eb751edd891d","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.7.7.tgz","fileCount":6743,"integrity":"sha512-7ucUiDAxevyBE8JbXBTe9ofHhS047VmWMLoksE45zZ08XSnhnyG7WUuk3gmDbAklfVMHedb9sEV3OovPUWt+Sw==","signatures":[{"sig":"MEUCIC8cwlh0za1Q1FCF4BOqrjgJNESP1xaa8BsR5l77I87SAiEA6opgrQ7gZRRnS7HusfI8abEYsYo75GLY8acqLtM8QNQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.7.7","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":99823059},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"8c0180c37ae4741f40969a26a9704c1068be4d93","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"18.20.3","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.7.7_1720771049774_0.7548814041484799","host":"s3://npm-registry-packages"}},"2.7.8":{"name":"element-plus","version":"2.7.8","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.7.8","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"5de53bbcb455653a27b43418e3569a22ead59866","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.7.8.tgz","fileCount":6743,"integrity":"sha512-h6dx2XihAbQaud0v+6O7Fy0b0G3YNplNVH7QnK3csTcvQd4y4raiyMRQpf9EKbRbTMdNrFsqAZrs9ok9DMcJHg==","signatures":[{"sig":"MEQCIEsZLGY4al3c9rQPJb0TcJMu13qkGMT0fRIZqkQIVDkAAiB8o47TmXgDeFbhJo4K9WtU0SHNXUSgeXihMk4t36AxkQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.7.8","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":96715900},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"352b41d0e1d86f5ad3a4a1fe301bf9483223540c","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"18.20.4","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.7.8_1721988133320_0.34222354157802815","host":"s3://npm-registry-packages"}},"2.8.0":{"name":"element-plus","version":"2.8.0","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.8.0","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"122685f9f1e01784f511dd4858fe005677ad1b95","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.8.0.tgz","fileCount":6819,"integrity":"sha512-7ngapVlVlQAjocVqD4MUKvKXlBneT9DSDk2mmBOSLRFWNm/HLDT15ozmsvUBfy18sajnyUeSIHTtINE8gfrGMg==","signatures":[{"sig":"MEYCIQDaThfcsmePCTzKgBdrLDZRuvSY2L1UKh1WpJ560oDcUQIhAIVKHVlwgbzUUWZgy9RyfqwqBEy41xL04lWl7r0fb6RW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.8.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":39692415},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"fe415dab9c034e1e5a4e40b6ba6d18c545e32592","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"18.20.4","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.8.0_1723186467486_0.9222022467949182","host":"s3://npm-registry-packages"}},"2.8.1":{"name":"element-plus","version":"2.8.1","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.8.1","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"e219f6de1e99bd064284811c3c285688939bf8e6","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.8.1.tgz","fileCount":6831,"integrity":"sha512-p11/6w/O0+hGvPhiN3jrcgh+XG+eg5jZlLdQVYvcPHZYhhCh3J3YeZWW1JO/REPES1vevkboT6VAi+9wHA8Dsg==","signatures":[{"sig":"MEUCIFmietVeg9clr/XcdJ5CfyRVeo/WQDJrA9Mey2v+9HvcAiEAjCO7SNSKSLaJ/J97ot9HR3mCQx0PDi2kI3471QfNpuM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.8.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":39893208},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"f9c078ee7b05284c8e2527f49306913537eae80c","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"18.20.4","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.8.1_1724423903393_0.5883014492545313","host":"s3://npm-registry-packages"}},"2.8.2":{"name":"element-plus","version":"2.8.2","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.8.2","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"3d6fc935923fdb06095985a26375bfcfe11b3bb3","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.8.2.tgz","fileCount":6831,"integrity":"sha512-pqoQlaUmzUFCjjTHyxGO7Cd0CizsQpIaad1ozV9PCaYjh2T4MIMnjfifqiYs2lWoZ/8GVwrRG1WTCfnZEjwfcg==","signatures":[{"sig":"MEYCIQCWo5+8n/mV+wWDczKk43iYs59HlB6A4bE1QR2xnDS2UwIhAImbGAfhRQna5fLJ7/TFa65Nkh9kkwZJZjfHlYc2KSP1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.8.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":39974935},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"f47c3aa6dca87d3a659731126088a146394665ff","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"18.20.4","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.8.2_1725620250570_0.3340602155227659","host":"s3://npm-registry-packages"}},"2.8.3":{"name":"element-plus","version":"2.8.3","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.8.3","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"8697027f8b4a4b39d445eba0b87d6935a1481fe0","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.8.3.tgz","fileCount":6831,"integrity":"sha512-BXQOyDf0s7JHyNEV8iaO+iaOzTZPsBXVKMzMI967vLCodUBDLrtiY5vglAn1YEebQcUOEUMhGcttTpIvEkcBjQ==","signatures":[{"sig":"MEMCHzPbYrakXyzy2qO9isf448KfoM421XlEXB2GtIIJDywCIFWK2sidot0U/moxo3GzZcI/1a2jtx5WRnLIZJbrsDYs","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.8.3","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":40019230},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"5dfce82063cac114ea9a7b6322b60df2f2da7dba","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"18.20.4","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.8.3_1726216197951_0.16198177675627012","host":"s3://npm-registry-packages"}},"2.8.4":{"name":"element-plus","version":"2.8.4","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.8.4","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"533cf204f534b8263c9fbe39de6cd3397d971fd2","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.8.4.tgz","fileCount":6831,"integrity":"sha512-ZlVAdUOoJliv4kW3ntWnnSHMT+u/Os7mXJjk2xzOlqNeHaI2/ozlF+R58ZCEak8ZnDi6+5A2viWEYRsq64IuiA==","signatures":[{"sig":"MEQCIDPhJ8PTtz/rbNqGol0E9rVxFOHkeO/dtxnDBT+cpdHjAiBEL6EHhxNZKANuO2I82eKuQHxgUDrFdEKaqIxgwL1uQw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.8.4","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":40123669},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"ab8c762edf4936282bb1b438c77d6937575c27de","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"18.20.4","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.8.4_1727435372006_0.8014765826372388","host":"s3://npm-registry-packages"}},"2.8.5":{"name":"element-plus","version":"2.8.5","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.8.5","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"4db83da805820b6c66f7f12168b76cdca55ffa86","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.8.5.tgz","fileCount":6831,"integrity":"sha512-Px+kPbRTVvn5oa5+9saa7QEOnUweKXm0JVI7yJHzKF/doQGixwcFMsQEF2+3Fy62EA/7dRRKVuhsNGGZYNk3cw==","signatures":[{"sig":"MEUCIDkiK/vdho/2M+YuU3EFdZQyMBvVjdy36tmzmqdNLOtdAiEAo8znbK6Np+HHVbBGdXCqmQtZFT7cbeuzTdl1nYdDiKw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.8.5","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":40272017},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"700d1256a5f2d51010efe789c39f5fe76060991f","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.17.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.8.5_1728646787864_0.4540723703206444","host":"s3://npm-registry-packages"}},"2.8.6":{"name":"element-plus","version":"2.8.6","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.8.6","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"af4b106610caa550444a2b318a20792f0e1af8c5","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.8.6.tgz","fileCount":6837,"integrity":"sha512-fk5jB8V3efM02/4roZ5SWOLArgaYXbxEydZLlXSr+KPAwjNyHBlk2+HO5em8YKo5+RLBoHnn6BaThj6IE4nXoQ==","signatures":[{"sig":"MEYCIQC9vB2XGmckX/K0OzrP6+rvoCjmjU6JY+ODNek4W/+Q6wIhAJUSOo154ajujY+1E8Vc3lcRBIeB/6zjdVhMog3DxaCc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.8.6","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":40281056},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"c66d9b73c02c57a03c5c2027a0046d5ee0afed4c","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.17.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.8.6_1729251849870_0.3063021072382841","host":"s3://npm-registry-packages"}},"2.8.7":{"name":"element-plus","version":"2.8.7","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.8.7","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"34770466c65ec2089cf1db805b432f479910fb51","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.8.7.tgz","fileCount":6843,"integrity":"sha512-oGQyFRufFOgjd872tZc+T4xQAYLlX4hj6d3ixeY13L4fFNUuc1N49JHAqJGPda0tdx3qCnjceZoh1kqqj2+tXQ==","signatures":[{"sig":"MEYCIQCsgIq6FlN78CGz1TdB9ysfmB4VnTDhaNCWTF0sdel0/AIhALKWhJkEFPwVED0tcgMRLfRb/Y9AzFtJwwZ/cXLLeQoS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.8.7","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":40199365},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"6baa069c4997f9a8af08fbb837aaa393a7cf9cda","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.18.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.3","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.8.7_1730474198333_0.6513657882764263","host":"s3://npm-registry-packages"}},"2.8.8":{"name":"element-plus","version":"2.8.8","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.8.8","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"3f32377f40fa8878e81ae34aed035fdedbcbe128","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.8.8.tgz","fileCount":6843,"integrity":"sha512-MLAH1x2PGTnOT7Iwqh9ASgfZhvgqQqrdbxuJH0w2fGjzE4ZjryyLQj24HXoQO7Zon66U3lrYxbdLI57M6OX0qw==","signatures":[{"sig":"MEUCIQD8c+35FbasmZDC0MV/+Yh9VYFPvk2F29B5lQMiU+8COAIgCdYi+MazdhR0BDwrz39A60MJE1oXvMcu+nzd1i+pRJM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.8.8","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":40263323},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"ef5730d75a2edd74c3197d4099232da0f12652f8","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.18.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.8.8_1731667077253_0.6738170188016388","host":"s3://npm-registry-packages"}},"2.9.0":{"name":"element-plus","version":"2.9.0","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.9.0","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"76a16566ab6dbadb555a40704bde870a02c306bc","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.9.0.tgz","fileCount":6929,"integrity":"sha512-ccOFXKsauo2dtokAr4OX7gZsb7TuAoVxA2zGRZo5o2yyDDBLBaZxOoFQPoxITSLcHbBfQuNDGK5Iag5hnyKkZA==","signatures":[{"sig":"MEQCIHr9eGVaQIoflWZyRH3CHa6g+4dhDrGdGjSU0/HqPt01AiAF6RzfyLJb6De9Aiy+rH2Lh33OmWi8gZtrkxDclol4iQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.9.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":49301904},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"7b7cd2322300b51f1a2105eb101c74178e011d00","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.3","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.18.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.9.0_1732893188104_0.7299175460639289","host":"s3://npm-registry-packages"}},"2.9.1":{"name":"element-plus","version":"2.9.1","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.9.1","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"00cac40abaafe8806fc77b2552050e14a7693680","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.9.1.tgz","fileCount":6927,"integrity":"sha512-9Agqf/jt4Ugk7EZ6C5LME71sgkvauPCsnvJN12Xid2XVobjufxMGpRE4L7pS4luJMOmFAH3J0NgYEGZT5r+NDg==","signatures":[{"sig":"MEYCIQCQbwYvmt8ooptoGrDZLgZY2J7W24uWW+wkJHNeJ1VYUAIhAJV3PvtlQLk3+9bvfTPdC6D8dRcWigkiN/U++Xz14n1r","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.9.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":49464702},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"4ea2be7966d9d8a430fe57edd4646062e7e26c87","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.18.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.9.1_1734085516168_0.022563930464516657","host":"s3://npm-registry-packages-npm-production"}},"2.9.2":{"name":"element-plus","version":"2.9.2","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.9.2","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"a6cf457868451249a50efc43369a90a5fdbf7319","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.9.2.tgz","fileCount":6927,"integrity":"sha512-HS+Cc5mmy70DixJuoN3cMxPPoNWXkjHzUw2PcGmysk6NHQzzUtwi2Vc+dlmbmRxj3eNqgC1xpPQV5Nf9uDtQRg==","signatures":[{"sig":"MEYCIQCb0ctzAqBUzqt4M4V2nfSmoQre7RJosd7gZuQFbH/WgwIhANaofLufwVcdFsStnjXZMADiIkYY5GqYa1aDd3JjJwyr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.9.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":39046894},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"46abc4f6d169a96d98c0a08997c635e3414d906a","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.18.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.9.2_1735910673297_0.45773699513569444","host":"s3://npm-registry-packages-npm-production"}},"2.9.3":{"name":"element-plus","version":"2.9.3","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.9.3","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"9d44f9aa5a810009490ecb814052aed560d77bb0","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.9.3.tgz","fileCount":6951,"integrity":"sha512-6tSLp5XytDS4TMZ0P3aGZnr7MXTagfNycepNfIDitd9IgwM9y01+Ssu6mglNi8RiXYhek6LBWNOd/cvpIO12+w==","signatures":[{"sig":"MEQCIFIP+smb4B9hPRTRKN3lAvpJePGn2Cx3BMuS/mZ22GvVAiAgOKOWRJ6w2phI842DAhlSoSmApL4M6BgabuK1Rgyzbg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.9.3","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":39272006},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"c2faa64f5351cfe79f21641ff58bf18938f6a66f","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.18.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.9.3_1736519304760_0.3684754257006091","host":"s3://npm-registry-packages-npm-production"}},"2.9.4":{"name":"element-plus","version":"2.9.4","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.9.4","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"e4b75055f0f1b1c1f33186321eb3d7a6424051e5","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.9.4.tgz","fileCount":6987,"integrity":"sha512-sGnW0wd9zf6lEGixXV2gfwx3X6VTMkP52qTkX7zbURJ2oariyslrKTBh2txt1sdn1pUvj2l0KY3OfSXoZGmDOw==","signatures":[{"sig":"MEUCIGOlzG6y0B/RSLXHIhOuJxnOJeo0m2kHJfzvM7457r1RAiEAkUguww0CzUCPhW6jlY9y+DUDEXNxe5/ZoLVxBuEPtco=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.9.4","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":39619196},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"a0d7d492bcbc9d73f9f8952b0000293f6b272b3d","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.18.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.9.4_1738927718720_0.5935756875376819","host":"s3://npm-registry-packages-npm-production"}},"2.9.5":{"name":"element-plus","version":"2.9.5","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.9.5","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"e7458a48188f0e7b68c6e96ebb6f7b1b98c10c67","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.9.5.tgz","fileCount":6981,"integrity":"sha512-r+X79oogLbYq8p9L5f9fHSHhUFNM0AL72aikqiZVxSc2/08mK6m/PotiB9e/D90QmWTIHIaFnFmW65AcXmneig==","signatures":[{"sig":"MEYCIQCJVLMt9SzAllsSeACcMN53stYsWutQgjUuAe2Ay7pj/wIhAOFhwridMS+DGeDp2qJmNz/7viROB/rK51u5gd3gd0i8","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.9.5","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":39481789},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"ae9077ba0aac4edef483b602263d913f6f46794f","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.18.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.9.5_1740116464962_0.912492348831776","host":"s3://npm-registry-packages-npm-production"}},"2.9.6":{"name":"element-plus","version":"2.9.6","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.9.6","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"f8a1d6b93ff5eb8889a1089e0358f5a9bd090a59","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.9.6.tgz","fileCount":6981,"integrity":"sha512-D9zU28Ce0s/9O/Vp3ewemikxzFVA6gdZyMwmWijHijo+t5/9H3sHRTIm1WlfeNpFW2Yq0y8nHXD0fU5YxU6qlQ==","signatures":[{"sig":"MEYCIQDd6dxpGLLcbvtL+x+z5a3ASarkDnmXgIHw8ocki20NAwIhANkBYj8CGX/vE3HQtH3wR8h6JdYeJ0jry0CG1yXgNfyF","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.9.6","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":39632008},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"5be10800a190423b41cde0b0c15dcb63c7527f34","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.18.3","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.9.6_1741347676304_0.2528821406780388","host":"s3://npm-registry-packages-npm-production"}},"2.9.7":{"name":"element-plus","version":"2.9.7","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.9.7","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"05bcc35de1d98192d25ebfd06fff7d6d2de9f911","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.9.7.tgz","fileCount":6987,"integrity":"sha512-6vjZh5SXBncLhUwJGTVKS5oDljfgGMh6J4zVTeAZK3YdMUN76FgpvHkwwFXocpJpMbii6rDYU3sgie64FyPerQ==","signatures":[{"sig":"MEYCIQCW0/ocn1Mo1H5o6cYqzwSclXeKp8VAbX0J3x7mvQ2TigIhAL+W7rXKfeoQ+N1QxFmUMxA4DvM8M9WDjrmAZcMQkOw/","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.9.7","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":39256741},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"03f170300fc5cbce5c5b842f9f949e404e841e0a","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.9.7_1742535700237_0.9675218170975004","host":"s3://npm-registry-packages-npm-production"}},"2.9.8":{"name":"element-plus","version":"2.9.8","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.9.8","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"72aea48dfcd5ef70a1859d2c8a16d189451f4afb","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.9.8.tgz","fileCount":7011,"integrity":"sha512-srViUaUdfblBKGMeuEPiXxxKlH5aUmKqEwmhb/At9Sj91DbU6od/jYN1955cTnzt3wTSA7GfnZF7UiRX9sdRHg==","signatures":[{"sig":"MEQCIAmBvEnb4P9Sz0ouZN2RSObnXTb7JjgWdeVTd+W9mkjFAiAFV9X9W3w9/diVqk/2dojnlgyHsAExpZ+41BAI6+Ssjw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.9.8","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":39477746},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"981bcd65c9cd114b0f1135bf6fe78d960d83780f","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.9.8_1744991306094_0.04186096052010746","host":"s3://npm-registry-packages-npm-production"}},"2.9.9":{"name":"element-plus","version":"2.9.9","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.9.9","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"17679dd2e11d70ed132216a3950d9df327053d04","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.9.9.tgz","fileCount":7011,"integrity":"sha512-gN553+xr7ETkhJhH26YG0fERmd2BSCcQKslbtR8fats0Mc0yCtZOXr00bmoPOt5xGzhuRN1TWc9+f1pCaiA0/Q==","signatures":[{"sig":"MEQCIFyCXxwgBttncWWA7hI+pvc1jVIDl9L5Tj5PKVo/2HmTAiB2EHRc2KaeDi5ayJpEtsKDGNpDDbN/8r/ezhEu9ejTDw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.9.9","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":39541194},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"30db5b8959dc9df9d8b35cbecc7bdbe32bf0d47b","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.9.9_1745753241653_0.9072395692293398","host":"s3://npm-registry-packages-npm-production"}},"2.9.10":{"name":"element-plus","version":"2.9.10","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.9.10","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"bde09d18833ffeb68dc5204462c91c640369c988","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.9.10.tgz","fileCount":7011,"integrity":"sha512-W2v9jWnm1kl/zm4bSvCh8aFCVlxvhG3fmqiDZwyd6WQiWGE595J/mpjcCggEr+49QDgIymhXrpPMOPPSARUbng==","signatures":[{"sig":"MEQCIQD5GG3QI1q2FTRN/aGMgqhUCGWHwBpaZZWVMJbL6ZMKOgIfUDNRbfIAkYAZ6FXLNpnLVeDyBFGPUOJEEfiBjzA+3w==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.9.10","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":42598600},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"766e9bdb4cc855fae20fd8f820f5511da2b415ff","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.9.10_1746775415013_0.7012569240970072","host":"s3://npm-registry-packages-npm-production"}},"2.9.11":{"name":"element-plus","version":"2.9.11","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.9.11","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"c939a8d945330f596b7a35aae0e501ea170874a2","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.9.11.tgz","fileCount":7023,"integrity":"sha512-x4L/6YC8de4JtuE3vpaEugJdQIeHQaHtIYKyk67IeF6dTIiVax45aX4nWOygnh+xX+0gTvL6xO+9BZhPA3G82w==","signatures":[{"sig":"MEUCICy46R9zkbOY7GVwEByu/ullF3IMPEmD3LfnjNRQ0EM6AiEA4jHb0cju1pTab3VE/MAr+OQ3HyUHmsVG+HqGJXGHKUQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.9.11","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":42489745},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"8a3da45f381322e56d3b28104d38c981d6b22308","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.9.11_1748002447510_0.8561512149223034","host":"s3://npm-registry-packages-npm-production"}},"2.10.0":{"name":"element-plus","version":"2.10.0","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.10.0","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"d17aa71881e2e910a794e4611e6a2bc6165fe9b2","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.10.0.tgz","fileCount":7147,"integrity":"sha512-T0+9XPY/Jx7Em1Yug5Ven/DUgTBfGyEoMYSdFoi5patzHNJLB5cpLqcfjbD7cE8bqg5ppvd3MmkLWGFc4rloIA==","signatures":[{"sig":"MEYCIQDAgkUoT4qJvDIfUoKIBZ3mo8wtdVnplAUDUKkzQbwRDAIhALHKOrnp15v9Itom9g3RyukI3kmTmBJCSQHnvOAD2yp5","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.10.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":42805199},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"b3f2a6f56249804a191791dc901c73cff914fd53","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.10.0_1749208303162_0.35275610493228515","host":"s3://npm-registry-packages-npm-production"}},"2.10.1":{"name":"element-plus","version":"2.10.1","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.10.1","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"66974aa732622d37a02c4cd9324316026ef28d87","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.10.1.tgz","fileCount":7147,"integrity":"sha512-R+YM8b+s+3aQ3EeY33q0inn3ehRnunP42aDYoJxUtSZPgMPSXzYgmGEhIDP7Xg4NvY8raaSuO0/1fDLEfZ+nlA==","signatures":[{"sig":"MEUCIQCADProuBqrt1KLuUg2Vo9B3nPgcI6pRyiqtZAXi1/KDQIgATj7IWz0mgY5t+P2zDbN7wJVgAoEjmeNUDkrOiUW0ys=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.10.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":42805735},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"bd42da1daed3c7c62847b3f5a8d46c4848ad0481","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.1","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.10.1_1749273561791_0.13613205271976603","host":"s3://npm-registry-packages-npm-production"}},"2.10.2":{"name":"element-plus","version":"2.10.2","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.10.2","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"5eb8ea6aa54cfdd88b903d7d65b623bdaeaf899d","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.10.2.tgz","fileCount":7147,"integrity":"sha512-p2KiAa0jEGXrzdlTAfpiS7HQFAhla4gvx6H7RuDf+OO0uC3DGpolxvdHjFR8gt7+vaWyxQNcHa1sAdBkmjqlgA==","signatures":[{"sig":"MEQCIDIPKj+O5s4CX/hWHWORn4vnvcHP23PlyO/cWEcEANrtAiBTRBu0yltOyfrdyEorjxTsxFwN39nRxilAu1O+kCpZ1w==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.10.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":42824184},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"ca1cdcdea742c9f235ddd9b18debabfff7f5981c","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.10.2_1749825273519_0.059383929421139126","host":"s3://npm-registry-packages-npm-production"}},"2.10.3":{"name":"element-plus","version":"2.10.3","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.10.3","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"82a4454d76b2104f71a46f49b02fba9650d1f33f","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.10.3.tgz","fileCount":7147,"integrity":"sha512-OLpf0iekuvWJrz1+H9ybvem6TYTKSNk6L1QDA3tYq2YWbogKXJnWpHG1UAGKR1B7gx+vUH7M15VIH3EijE9Kgw==","signatures":[{"sig":"MEUCIB8U1D5s4CJkyeeJiPCcNAGP4Z4TFGhjLUXhZ2F4AmaVAiEAvHmKHBpDyEQd9SRCZYADELPDPR9QR1CogiNlVa8MfMM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.10.3","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":43520059},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"d391a0879d5c5fe4c6d8024e472399ef492900d7","_npmUser":{"name":"jeremywuuuuu","actor":{"name":"jeremywuuuuu","type":"user","email":"jeremy577@icloud.com"},"email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.2","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.10.3_1751631085541_0.4493576398524497","host":"s3://npm-registry-packages-npm-production"}},"2.10.4":{"name":"element-plus","version":"2.10.4","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.10.4","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"72de60a6074be79f9f1b299f422e7ac96a3b5e9a","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.10.4.tgz","fileCount":7153,"integrity":"sha512-UD4elWHrCnp1xlPhbXmVcaKFLCRaRAY6WWRwemGfGW3ceIjXm9fSYc9RNH3AiOEA6Ds1p9ZvhCs76CR9J8Vd+A==","signatures":[{"sig":"MEYCIQCxDvClRx/K4W9nWeIhUGXGSkCziZjjbVJseuyF1SoF0QIhAMNPDywE0rJisafIa2tjevfBYNRhcJVO9yYdubi3nefo","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.10.4","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":43407519},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"3d76b2c6c76256cf38777b15ae77f3f979538fde","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.3","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.10.4_1752238119892_0.9750938706393333","host":"s3://npm-registry-packages-npm-production"}},"2.10.5":{"name":"element-plus","version":"2.10.5","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.10.5","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"38ba09c9c7e0e5a8cae6c0bd591c17004ea7f9c8","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.10.5.tgz","fileCount":7153,"integrity":"sha512-O9wTDu3Tm51ACVByWrThtBhH4Ygefg1HGY5pyAaxnoIrj8uMN0GtZ4IREwR3Yw/6sM2HyxjrsGI/D46iUVP97A==","signatures":[{"sig":"MEUCIQD/mfwOQBaiRMdIxsb0QqMM9sRx5i6j58d/fL1RZZGjqgIgOQGLDUQK/yRLep+C5M5tRiHwWhRt541ouC0QpTaRa5M=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.10.5","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":43851053},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"752edc9209186e8cf3038510097188b946b29259","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.4","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.10.5_1754072448320_0.5119088786697381","host":"s3://npm-registry-packages-npm-production"}},"2.10.6":{"name":"element-plus","version":"2.10.6","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.10.6","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"fbe5216aa4d31400ec2ed80622e0b3d50e9d0f67","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.10.6.tgz","fileCount":7153,"integrity":"sha512-N1XfO+x46p9Df9KNHeRQiHW4ilt4k+Jh6jeA1Ip9WpVzwDW8CRz+NqaLLDEZmnez62bBdCuWGfV7lIRq3+FQyg==","signatures":[{"sig":"MEUCIEz5giJ/eDKnrcWUQfL0VwcPrATa6lVaviJ2mhBMvhH3AiEAgQsEzu0rH2YfZg87ZY26HPHAwJjPFddzIJvDq4wr5Og=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.10.6","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":43876685},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"762eed91e38b1c1f0b6a2449b1c13cab56949a54","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.4","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.10.6_1754631099055_0.23406234102639845","host":"s3://npm-registry-packages-npm-production"}},"2.10.7":{"name":"element-plus","version":"2.10.7","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.10.7","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"daf19a50a51166ac08861ebd29497bbf0b6c74ac","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.10.7.tgz","fileCount":7153,"integrity":"sha512-bL4yhepL8/0NEQA5+N2Q6ZVKLipIDkiQjK2mqtSmGh6CxJk1yaBMdG5HXfYkbk1htNcT3ULk9g23lzT323JGcA==","signatures":[{"sig":"MEQCIFem6gDQnjfo/kxla3WgnvCVAgYGTe3B9o+aXWwveiqlAiABO8+HCsAawqfph3Pg7uybI9gQwlmH20Ke99o7fDy5Lw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.10.7","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":44356803},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"5873341fb5d343ee0a19e6af1655f70f14a9f9f8","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.4","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.10.7_1754995163824_0.6065783029867657","host":"s3://npm-registry-packages-npm-production"}},"2.11.0":{"name":"element-plus","version":"2.11.0","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.11.0","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"0a3e62cb40beb641bcecb8c980285ae68a2ba8c0","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.11.0.tgz","fileCount":7248,"integrity":"sha512-Kdr3knlpEpUTfEDbWIyh+/CvQbeNb+Kig971M+G/QinVcD2BfsUNWo5OCogaF0Nvy/BuBFdZ7KoS+PtpWBzidw==","signatures":[{"sig":"MEQCIHHhwqG/qkeKg9gcF+NWRIRZYV+jKmtDHaj/+f04DrV7AiAhbd8hLkZqaQ4Y8A91AIODtqRvsnZqEil3oXhxmC+4Og==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.11.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":45111944},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"d8a3eae1a164c0ac67fe64d474b2338d70de7452","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.4","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.11.0_1755864231730_0.5978653800118601","host":"s3://npm-registry-packages-npm-production"}},"2.11.1":{"name":"element-plus","version":"2.11.1","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.11.1","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"10cb0c149e157d14944d293ea68db114b2303c37","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.11.1.tgz","fileCount":7248,"integrity":"sha512-weYFIniyNXTAe9vJZnmZpYzurh4TDbdKhBsJwhbzuo0SDZ8PLwHVll0qycJUxc6SLtH+7A9F7dvdDh5CnqeIVA==","signatures":[{"sig":"MEYCIQCW47gfdwETanVyWYbdAe/D+xJ9dj6kTCdOyADQcSQMcgIhAI8F26pVw4AhXLl4Gfx+lhNNsoLJxpDo8/6vUSl7OPqq","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.11.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":45112020},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"13013e1f739203fb75cbe9da01fa06e742b8b70d","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.4","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.11.1_1755912101602_0.6172043232904558","host":"s3://npm-registry-packages-npm-production"}},"2.11.2":{"name":"element-plus","version":"2.11.2","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.11.2","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"f1ba573426217ec936401fc4dc2a19bf11f5622e","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.11.2.tgz","fileCount":7254,"integrity":"sha512-sTMDXtgeqy17TUsBSH/DL3h1/5sqIOVUUgXFoVbdD8lWWYssKrDX50CEYy4k29tYJhPHKZyFSwcLJsIajr+dDA==","signatures":[{"sig":"MEUCIQDT5yazylkMYqc1UW7Op2k+1gN/mwuFPbRAVcVRK93grwIgFtMdJ25ja0jy2CKULwoGVdd71SCyl2B+9iIUfhDezUI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.11.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":49405765},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"d49a98c477e5be95a702ccb641c57c701affb1db","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.4","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.11.2_1757071720738_0.6639006305377952","host":"s3://npm-registry-packages-npm-production"}},"2.11.3":{"name":"element-plus","version":"2.11.3","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.11.3","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"97e94e9aa399e240be5591d3f1c008d965cb9ab3","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.11.3.tgz","fileCount":7254,"integrity":"sha512-769xsjLR4B9Vf9cl5PDXnwTEdmFJvMgAkYtthdJKPhjVjU3hdAwTJ+gXKiO+PUyo2KWFwOYKZd4Ywh6PHfkbJg==","signatures":[{"sig":"MEQCIF6NVTWPKyIpcaB9OLGt5fm5bpSMTPzggwWYyz90OLedAiBNLPh0qmDzYbh6EV5hJDr9ITEvKWs6AwlI1dt9vGx7Fg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.11.3","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":49561302},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"1e49f1dc2988a969622654b0221872a8d7277838","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.5","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.14.182","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.2","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.6","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.11.3_1758256876274_0.6921078043762345","host":"s3://npm-registry-packages-npm-production"}},"2.11.4":{"name":"element-plus","version":"2.11.4","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.11.4","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"00c7cdec627e8f83f9175aa9a55b00846c58803a","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.11.4.tgz","fileCount":7150,"integrity":"sha512-sLq+Ypd0cIVilv8wGGMEGvzRVBBsRpJjnAS5PsI/1JU1COZXqzH3N1UYMUc/HCdvdjf6dfrBy80Sj7KcACsT7w==","signatures":[{"sig":"MEQCIB6ii4uBH7RCpKZMXBYDf2bPH8FNPTRI1SWLSpjBKMikAiAcvfkQjeiXA6c9fzSMYjKuaG0hgYmG/70qEdpLm32SxQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.11.4","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":49404611},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"7668e43a7f0a5809bb95a8c3f2a55288aade5b92","_npmUser":{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"9.9.4","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.5","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.13","lodash":"^4.17.21","lodash-es":"^4.17.21","escape-html":"^1.0.3","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.17.20","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.3","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.12","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.11.4_1758859915661_0.8273643447466295","host":"s3://npm-registry-packages-npm-production"}},"2.11.5":{"name":"element-plus","version":"2.11.5","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.11.5","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"752c2c4f70e86d615e577686c2f08054860a0902","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.11.5.tgz","fileCount":7150,"integrity":"sha512-O+bIVHQCjUDm4GiIznDXRoS8ar2TpWLwfOGnN/Aam0VXf5kbuc4SxdKKJdovWNxmxeqbcwjsSZPKgtXNcqys4A==","signatures":[{"sig":"MEYCIQC3t3745UCe2D7ZwSBUjedZ8bIaucglgwKAK0/c9pHfQgIhAPWbpg9hHPD0RWHfdfwu8TCDSymTBhsaC9BUiCIu4Ld0","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.11.5","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":49483199},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"4f328f021ac9d0180de7389a10cc2dea15a9770a","_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:72c62799-7023-4e04-8e57-86d5b4ed0ff2"}},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"11.6.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.5","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.18","lodash":"^4.17.21","lodash-es":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.17.20","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.3","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.12","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.11.5_1760678876299_0.8096314621414764","host":"s3://npm-registry-packages-npm-production"}},"2.11.7":{"name":"element-plus","version":"2.11.7","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.11.7","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"ee6270cd84df7aff89fe50bb5a5c5da11e4db15f","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.11.7.tgz","fileCount":7180,"integrity":"sha512-Bh47wuzsqaNBNDkbtlOlZER1cGcOB8GsXp/+C9b95MOrk0wvoHUV4NKKK7xMkfYNFYdYysQ752oMhnExgAL6+g==","signatures":[{"sig":"MEQCIFBcgkTMgZ7rO7JFzGmUcSWigm8DFPurcMYe/RsftOZGAiB9MOJUDtSxOpl1BJfvqosOgu2kEYQkFU0RY+Xpk2EkjA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.11.7","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":45189710},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"9de23d4ea48882dcfeb21ab52e456a7d98b33c6c","_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:72c62799-7023-4e04-8e57-86d5b4ed0ff2"}},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"11.6.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.5","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.18","lodash":"^4.17.21","lodash-es":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.17.20","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.3","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.12","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.11.7_1761981058150_0.8224167075024096","host":"s3://npm-registry-packages-npm-production"}},"2.11.8":{"name":"element-plus","version":"2.11.8","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.11.8","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"6a06a24bd28a39bf3ee92a9e6a540103740666bb","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.11.8.tgz","fileCount":7187,"integrity":"sha512-2wzSj2uubFU1f0t/gHkkE1d09mUgV18fSZX5excw3Ar6hyWcxph4E57U8dgYLDt7HwkKYv1BiqPyBdy0WqWlOA==","signatures":[{"sig":"MEUCIQC0VIy5kqFVbV8tPLm8kzYJOT/UGv9/E2LQLGAXToP6hgIgAzTxkq43Co68zyQOQcyq1sLIMwBfdZVtPk47wJ8zQbc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.11.8","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":45326115},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"5e222bbdfb71ec61460c5b3b172cd85135db4f38","_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:72c62799-7023-4e04-8e57-86d5b4ed0ff2"}},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"11.6.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.5","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.18","lodash":"^4.17.21","lodash-es":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.17.20","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.3","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.12","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.11.8_1763176646102_0.3456620137204154","host":"s3://npm-registry-packages-npm-production"}},"2.11.9":{"name":"element-plus","version":"2.11.9","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.11.9","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"2901f2f26300f1b461a1a2c04dd62d1e01cb9037","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.11.9.tgz","fileCount":7193,"integrity":"sha512-yTckX+fMGDGiBHVL1gpwfmjEc8P8OwuyU5ZX3f4FhMy2OdC2Y+OwQYWUXmuB+jFMukuSdnGYXYgHq6muBjSxTg==","signatures":[{"sig":"MEUCIDwwgDvfHN9HXuwiaJEVs34RNRN+rnXWFVFDi/+FXw+DAiEAkJ1rInFbPstWWgzPXWNP1rYVeDqVSo66QfswPx/z2U4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.11.9","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":45333175},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"94c3c537585f3e35bc83d550ca82c1c52443e3f7","_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:72c62799-7023-4e04-8e57-86d5b4ed0ff2"}},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"11.6.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.5","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.19","lodash":"^4.17.21","lodash-es":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.17.20","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.3","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.12","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.11.9_1764349272201_0.9488110319927547","host":"s3://npm-registry-packages-npm-production"}},"2.12.0":{"name":"element-plus","version":"2.12.0","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.12.0","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"489192aae6e2f08f0c78ac41c0115f8231e8c8c3","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.12.0.tgz","fileCount":7193,"integrity":"sha512-M9YLSn2np9OnqrSKWsiXvGe3qnF8pd94+TScsHj1aTMCD+nSEvucXermf807qNt6hOP040le0e5Aft7E9ZfHmA==","signatures":[{"sig":"MEUCIQDEtTqpMTHMp4U1jhalAi7oi4XIllkE9FPJA2KDOpcG2AIgdrfz133gu/hWjybfn1mOGN1zUUmwiv7szKaxaR/yxiM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.12.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":45763488},"main":"lib/index.js","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"adda1074c89590738921c8a258e2420d75255626","_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:72c62799-7023-4e04-8e57-86d5b4ed0ff2"}},"jsdelivr":"dist/index.full.js","web-types":"web-types.json","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"11.6.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.6","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.19","lodash":"^4.17.21","lodash-es":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^9.1.0","@types/lodash":"^4.17.20","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.3","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.12","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.2.37","csstype":"^2.6.20","vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.12.0_1764910658172_0.9185051022348625","host":"s3://npm-registry-packages-npm-production"}},"2.13.0":{"name":"element-plus","version":"2.13.0","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.13.0","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"e2ae817c1ed4fa9e94456af69a0f88cd824ee0c7","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.13.0.tgz","fileCount":7187,"integrity":"sha512-qjxS+SBChvqCl6lU6ShiliLMN6WqFHiXQENYbAY3GKNflG+FS3jqn8JmQq0CBZq4koFqsi95NT1M6SL4whZfrA==","signatures":[{"sig":"MEQCIGGbc3txzfmUISg4hi5iQqTp+AF2EacnGyfIIYiomvgEAiAwjqMutuE465QhdfT3kf33yByFuoB9LjbjSvAKiVpIDA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.13.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":45164387},"main":"lib/index.js","_from":"file:element-plus-2.13.0.tgz","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"21ff9b11658f696cee2ebda404ba785001ed58cb","_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:72c62799-7023-4e04-8e57-86d5b4ed0ff2"}},"jsdelivr":"dist/index.full.js","_resolved":"/tmp/7f494b0fa4c1cf11140020e24797ae32/element-plus-2.13.0.tgz","web-types":"web-types.json","_integrity":"sha512-qjxS+SBChvqCl6lU6ShiliLMN6WqFHiXQENYbAY3GKNflG+FS3jqn8JmQq0CBZq4koFqsi95NT1M6SL4whZfrA==","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"11.6.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.6","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.19","lodash":"^4.17.21","lodash-es":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^10.11.0","@types/lodash":"^4.17.20","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.3","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.12","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.13.0_1766131493464_0.0426194304533698","host":"s3://npm-registry-packages-npm-production"}},"2.13.1":{"name":"element-plus","version":"2.13.1","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.13.1","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"2cc6059da0f0f217f27d657f5140a45ecb0fd221","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.13.1.tgz","fileCount":7231,"integrity":"sha512-eG4BDBGdAsUGN6URH1PixzZb0ngdapLivIk1meghS1uEueLvQ3aljSKrCt5x6sYb6mUk8eGtzTQFgsPmLavQcA==","signatures":[{"sig":"MEYCIQClLsz2+QvoouCtVgGWt1I4WGVBIGlRhgYNgjpkj+2CvwIhAPEOtlcsUfqTJ8bdfpEn8dryfy6I0jevhbOSy40xp8im","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.13.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":45416902},"main":"lib/index.js","_from":"file:element-plus-2.13.1.tgz","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"d8c723219a471c711fa2a798a8b85a1f06e2e63d","_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:72c62799-7023-4e04-8e57-86d5b4ed0ff2"}},"jsdelivr":"dist/index.full.js","_resolved":"/tmp/8f6536ebbf502658bbb3d770b29a5ced/element-plus-2.13.1.tgz","web-types":"web-types.json","_integrity":"sha512-eG4BDBGdAsUGN6URH1PixzZb0ngdapLivIk1meghS1uEueLvQ3aljSKrCt5x6sYb6mUk8eGtzTQFgsPmLavQcA==","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"11.6.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.19.6","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.19","lodash":"^4.17.21","lodash-es":"^4.17.21","memoize-one":"^6.0.0","@vueuse/core":"^10.11.0","@types/lodash":"^4.17.20","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.3","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.12","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.13.1_1767948971859_0.34368727816096456","host":"s3://npm-registry-packages-npm-production"}},"2.13.2":{"name":"element-plus","version":"2.13.2","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.13.2","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"cf42be893b19054eec3d751e287fddb16f7d2058","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.13.2.tgz","fileCount":7875,"integrity":"sha512-Zjzm1NnFXGhV4LYZ6Ze9skPlYi2B4KAmN18FL63A3PZcjhDfroHwhtM6RE8BonlOPHXUnPQynH0BgaoEfvhrGw==","signatures":[{"sig":"MEYCIQDiJGJBWS7WxyNA9bhl6p3/QJK3wQghOx2yHF4heiC/rAIhALun/GonTZZLL+Je3SjhjUxp3hnjoC9M2aeePBIhbA4p","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.13.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":44948339},"main":"lib/index.js","_from":"file:element-plus-2.13.2.tgz","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"c88e0d807f0da3e73f1dbf0c6bc760555fa0e927","_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:72c62799-7023-4e04-8e57-86d5b4ed0ff2"}},"jsdelivr":"dist/index.full.js","_resolved":"/tmp/ab1c1c976c55ad9cdc76a99f5793db3f/element-plus-2.13.2.tgz","web-types":"web-types.json","_integrity":"sha512-Zjzm1NnFXGhV4LYZ6Ze9skPlYi2B4KAmN18FL63A3PZcjhDfroHwhtM6RE8BonlOPHXUnPQynH0BgaoEfvhrGw==","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"11.6.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.20.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.19","lodash":"^4.17.23","lodash-es":"^4.17.23","memoize-one":"^6.0.0","@vueuse/core":"^10.11.0","@types/lodash":"^4.17.20","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.3","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.12","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.13.2_1769778499419_0.23576007812011102","host":"s3://npm-registry-packages-npm-production"}},"2.13.3":{"name":"element-plus","version":"2.13.3","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.13.3","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"45caaea61ac150694e5a72887f12cc7baf4e1acc","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.13.3.tgz","fileCount":7875,"integrity":"sha512-RwLVtFpeHjZ4UCtHxVi1/sGR2cr2xOL7hqWa7qJc/+gdO6QavVG8Nw1C647obCb3tIg2ztMhNbIIjZUv+6z1og==","signatures":[{"sig":"MEQCIETtI7rjfcnV5TYeaE9TiNEjzlMAH4MkVBTD+TP3IEr3AiBvuqzxLeewVoCZcqzm19GD7JuCCh2B6B1JLZDRrSucSw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.13.3","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":45147597},"main":"lib/index.js","_from":"file:element-plus-2.13.3.tgz","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"5090c5ec26db81cd5f5a280ddc41c75f02d1e7bf","_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:72c62799-7023-4e04-8e57-86d5b4ed0ff2"}},"jsdelivr":"dist/index.full.js","_resolved":"/tmp/d1237135ee38abb4b9118967c4d0281e/element-plus-2.13.3.tgz","web-types":"web-types.json","_integrity":"sha512-RwLVtFpeHjZ4UCtHxVi1/sGR2cr2xOL7hqWa7qJc/+gdO6QavVG8Nw1C647obCb3tIg2ztMhNbIIjZUv+6z1og==","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"11.6.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.20.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.19","lodash":"^4.17.23","lodash-es":"^4.17.23","memoize-one":"^6.0.0","@vueuse/core":"^10.11.0","@types/lodash":"^4.17.20","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.3","@ctrl/tinycolor":"^3.4.1","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.12","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.13.3_1772284537334_0.9977266016729651","host":"s3://npm-registry-packages-npm-production"}},"2.13.4":{"name":"element-plus","version":"2.13.4","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.13.4","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"275e08bc58eb96d6b0e3423a1a691affaec619fb","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.13.4.tgz","fileCount":6418,"integrity":"sha512-RiPWp+lD3cuEqJPHkqGixZcuv+dy7z6FFOTZORIAAoGaOrxA2jsuefY7BmB5aa3VNjKL4pTu8ekfZPSnLx4Z9w==","signatures":[{"sig":"MEUCIQDbuA8v/Ki5clGlYQJwz63VoZwqW7Xk00zxACMbb7MjrwIgZfa8UOTzo54nZIo8J/pyHbe/vToTZQ0OVOSxm1MAXuk=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.13.4","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":39869017},"main":"lib/index.js","_from":"file:element-plus-2.13.4.tgz","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"043a6dd459d90db676b63bb2ddaaa00990445298","_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:72c62799-7023-4e04-8e57-86d5b4ed0ff2"}},"jsdelivr":"dist/index.full.js","_resolved":"/tmp/6a2f049ab2c36d7ba8ee15043f24fc98/element-plus-2.13.4.tgz","web-types":"web-types.json","_integrity":"sha512-RiPWp+lD3cuEqJPHkqGixZcuv+dy7z6FFOTZORIAAoGaOrxA2jsuefY7BmB5aa3VNjKL4pTu8ekfZPSnLx4Z9w==","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"11.6.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.20.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.19","lodash":"^4.17.23","lodash-es":"^4.17.23","memoize-one":"^6.0.0","@vueuse/core":"^10.11.0","@types/lodash":"^4.17.20","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.3","@ctrl/tinycolor":"^4.2.0","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.12","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.13.4_1772797497396_0.6071541625292134","host":"s3://npm-registry-packages-npm-production"}},"2.13.5":{"name":"element-plus","version":"2.13.5","keywords":["element-plus","element","component library","ui framework","ui","vue"],"license":"MIT","_id":"element-plus@2.13.5","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"dist":{"shasum":"8c7d0aacd6dee7dcde9026cca59a4be9e61615b5","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.13.5.tgz","fileCount":6418,"integrity":"sha512-dmY24fhSREfZN/PuUt0YZigMso7wWzl+B5o+YKNN15kQIn/0hzamsPU+ebj9SES0IbUqsLX1wkrzYmzU8VrVOQ==","signatures":[{"sig":"MEUCIQD6uNdsczP/yklJyz1FGeB1NoIwYPVBXVQ3vEyOVE23CAIgA38onwhzogfn4lylM+BdyvpaPJ+uxg9fyce4jP1IuNE=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.13.5","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":39873414},"main":"lib/index.js","_from":"file:element-plus-2.13.5.tgz","style":"dist/index.css","types":"es/index.d.ts","unpkg":"dist/index.full.js","vetur":{"tags":"tags.json","attributes":"attributes.json"},"module":"es/index.mjs","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./*":"./*","./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./global":{"types":"./global.d.ts"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"}},"gitHead":"fb0ee9de048a89e2cb52cd4a86886e368353a7c1","_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:72c62799-7023-4e04-8e57-86d5b4ed0ff2"}},"jsdelivr":"dist/index.full.js","_resolved":"/tmp/3fc8895e1b251616d9228564a0b67af4/element-plus-2.13.5.tgz","web-types":"web-types.json","_integrity":"sha512-dmY24fhSREfZN/PuUt0YZigMso7wWzl+B5o+YKNN15kQIn/0hzamsPU+ebj9SES0IbUqsLX1wkrzYmzU8VrVOQ==","repository":{"url":"git+https://github.com/element-plus/element-plus.git","type":"git"},"_npmVersion":"11.6.1","description":"A Component Library for Vue 3","directories":{},"sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"_nodeVersion":"20.20.0","browserslist":["> 1%","not ie 11","not op_mini all"],"dependencies":{"dayjs":"^1.11.19","lodash":"^4.17.23","lodash-es":"^4.17.23","memoize-one":"^6.0.0","@vueuse/core":"12.0.0","@types/lodash":"^4.17.20","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","lodash-unified":"^1.0.3","@ctrl/tinycolor":"^4.2.0","async-validator":"^4.2.5","@floating-ui/dom":"^1.0.1","@types/lodash-es":"^4.17.12","normalize-wheel-es":"^1.2.0","@element-plus/icons-vue":"^2.3.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"vue-router":"^4.0.16","@types/node":"*"},"peerDependencies":{"vue":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/element-plus_2.13.5_1772896869608_0.04461978829589608","host":"s3://npm-registry-packages-npm-production"}},"2.13.6":{"name":"element-plus","version":"2.13.6","description":"A Component Library for Vue 3","keywords":["element-plus","element","component library","ui framework","ui","vue"],"homepage":"https://element-plus.org/","bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"license":"MIT","main":"lib/index.js","module":"es/index.mjs","types":"es/index.d.ts","exports":{".":{"types":"./es/index.d.ts","import":"./es/index.mjs","require":"./lib/index.js"},"./global":{"types":"./global.d.ts"},"./es":{"types":"./es/index.d.ts","import":"./es/index.mjs"},"./lib":{"types":"./lib/index.d.ts","require":"./lib/index.js"},"./es/*.mjs":{"types":"./es/*.d.ts","import":"./es/*.mjs"},"./es/*":{"types":["./es/*.d.ts","./es/*/index.d.ts"],"import":"./es/*.mjs"},"./lib/*.js":{"types":"./lib/*.d.ts","require":"./lib/*.js"},"./lib/*":{"types":["./lib/*.d.ts","./lib/*/index.d.ts"],"require":"./lib/*.js"},"./*":"./*"},"unpkg":"dist/index.full.js","jsdelivr":"dist/index.full.js","repository":{"type":"git","url":"git+https://github.com/element-plus/element-plus.git"},"publishConfig":{"access":"public"},"style":"dist/index.css","sideEffects":["dist/*","theme-chalk/**/*.css","theme-chalk/src/**/*.scss","es/components/*/style/*","lib/components/*/style/*"],"peerDependencies":{"vue":"^3.3.0"},"dependencies":{"@ctrl/tinycolor":"^4.2.0","@element-plus/icons-vue":"^2.3.2","@floating-ui/dom":"^1.0.1","@popperjs/core":"npm:@sxzz/popperjs-es@^2.11.7","@types/lodash":"^4.17.20","@types/lodash-es":"^4.17.12","@vueuse/core":"12.0.0","async-validator":"^4.2.5","dayjs":"^1.11.19","lodash":"^4.17.23","lodash-es":"^4.17.23","lodash-unified":"^1.0.3","memoize-one":"^6.0.0","normalize-wheel-es":"^1.2.0","vue-component-type-helpers":"^3.2.4"},"devDependencies":{"@types/node":"*","vue-router":"^4.0.16"},"vetur":{"tags":"tags.json","attributes":"attributes.json"},"web-types":"web-types.json","browserslist":["> 1%","not ie 11","not op_mini all"],"gitHead":"1b7aedf685bbafe20eb8941014db4e5d8e0e8937","_id":"element-plus@2.13.6","_integrity":"sha512-XHgwXr8Fjz6i+6BaqFhAbae/dJbG7bBAAlHrY3pWL7dpj+JcqcOyKYt4Oy5KP86FQwS1k4uIZDjCx2FyUR5lDg==","_resolved":"/tmp/b50376703480458236edd6f5ee9f3ab7/element-plus-2.13.6.tgz","_from":"file:element-plus-2.13.6.tgz","_nodeVersion":"20.19.0","_npmVersion":"11.6.1","dist":{"integrity":"sha512-XHgwXr8Fjz6i+6BaqFhAbae/dJbG7bBAAlHrY3pWL7dpj+JcqcOyKYt4Oy5KP86FQwS1k4uIZDjCx2FyUR5lDg==","shasum":"965a38dce9638538e6056e1908e184cabe95b9f0","tarball":"https://registry.npmjs.org/element-plus/-/element-plus-2.13.6.tgz","fileCount":6426,"unpackedSize":40149673,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/element-plus@2.13.6","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQCuXN2NE2h2zoui29QQEphmRSeLVty7/7uYLIYokbHpCgIgWHMF+m/35NJiP0zHzHJ/GlrwGapiy6+E9iNoPuSG3JM="}]},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:72c62799-7023-4e04-8e57-86d5b4ed0ff2"}},"directories":{},"maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/element-plus_2.13.6_1773987947516_0.697980223480196"},"_hasShrinkwrap":false}},"time":{"created":"2019-06-12T09:50:42.427Z","modified":"2026-03-20T06:25:48.312Z","1.0.0":"2019-06-12T09:50:42.587Z","1.0.1-alpha.0":"2020-09-15T09:13:12.490Z","1.0.1-alpha.1":"2020-09-15T09:23:59.902Z","1.0.1-alpha.2":"2020-09-16T07:08:58.518Z","1.0.1-alpha.3":"2020-09-27T05:33:11.903Z","1.0.1-alpha.4":"2020-10-04T09:25:48.549Z","1.0.1-alpha.5":"2020-10-15T02:31:16.816Z","1.0.1-alpha.6":"2020-10-16T06:36:54.144Z","1.0.1-alpha.7":"2020-10-20T05:51:03.025Z","1.0.1-alpha.8":"2020-10-20T06:15:56.888Z","1.0.1-alpha.9":"2020-10-21T09:13:10.704Z","1.0.1-alpha.10":"2020-10-23T07:02:55.941Z","1.0.1-alpha.11":"2020-10-28T06:38:56.743Z","1.0.1-alpha.12":"2020-11-02T15:28:03.903Z","1.0.1-alpha.13":"2020-11-04T06:51:23.144Z","1.0.1-alpha.14":"2020-11-04T09:05:05.370Z","1.0.1-alpha.15":"2020-11-16T03:35:07.712Z","1.0.1-alpha.16":"2020-11-20T02:54:43.767Z","1.0.1-alpha.17":"2020-11-22T13:50:36.002Z","1.0.1-alpha.18":"2020-11-22T14:45:04.350Z","1.0.1-alpha.19":"2020-11-23T06:44:21.211Z","1.0.1-alpha.20":"2020-11-23T07:14:59.308Z","1.0.1-alpha.21":"2020-11-24T07:21:09.326Z","1.0.1-alpha.22":"2020-11-26T15:35:24.876Z","1.0.1-alpha.23":"2020-11-27T04:25:43.589Z","1.0.1-beta.0":"2020-11-29T11:06:50.260Z","1.0.1-beta.1":"2020-12-01T14:04:56.211Z","1.0.1-beta.2":"2020-12-02T03:50:43.073Z","1.0.1-beta.3":"2020-12-03T13:39:10.312Z","1.0.1-beta.4":"2020-12-05T05:21:53.639Z","1.0.1-beta.5":"2020-12-07T05:34:50.555Z","1.0.1-beta.6":"2020-12-09T05:06:12.301Z","1.0.1-beta.7":"2020-12-10T06:18:41.986Z","1.0.1-beta.8":"2020-12-12T07:14:43.774Z","1.0.1-beta.9":"2020-12-16T15:09:20.544Z","1.0.1-beta.10":"2020-12-18T03:44:37.514Z","1.0.1-beta.11":"2020-12-21T14:46:58.563Z","1.0.2-beta.12":"2020-12-23T15:42:05.063Z","1.0.1-beta.13":"2020-12-23T16:45:58.660Z","1.0.1-beta.14":"2020-12-23T17:29:36.679Z","1.0.1-beta.15":"2020-12-27T07:11:19.868Z","1.0.1-beta.16":"2020-12-27T10:31:22.582Z","1.0.1-beta.17":"2020-12-27T16:22:48.058Z","1.0.1-beta.18":"2020-12-31T03:43:47.209Z","1.0.1-beta.19":"2021-01-02T10:52:06.550Z","1.0.1-beta.20":"2021-01-04T03:57:32.023Z","1.0.1-beta.21":"2021-01-05T09:19:16.829Z","1.0.1-beta.22":"2021-01-06T15:49:51.642Z","1.0.1-beta.23":"2021-01-07T06:51:03.553Z","1.0.1-beta.24":"2021-01-11T06:22:56.852Z","1.0.1-beta.25":"2021-01-14T09:34:01.116Z","1.0.1-beta.26":"2021-01-14T10:06:35.174Z","1.0.1-beta.27":"2021-01-15T11:32:57.904Z","1.0.2-beta.28":"2021-01-20T08:09:38.125Z","1.0.2-beta.29":"2021-01-25T10:19:53.366Z","1.0.2-beta.30":"2021-01-25T15:45:05.714Z","1.0.2-beta.31":"2021-01-31T11:27:25.134Z","1.0.2-beta.32":"2021-02-08T08:57:58.235Z","1.0.2-beta.33":"2021-03-03T04:42:23.941Z","1.0.2-beta.34":"2021-03-12T13:09:10.567Z","1.0.2-beta.35":"2021-03-15T03:47:04.092Z","1.0.2-beta.36":"2021-03-28T05:27:26.052Z","1.0.2-beta.37":"2021-04-08T09:24:01.460Z","1.0.2-beta.38":"2021-04-09T02:29:56.678Z","1.0.2-beta.39":"2021-04-09T06:11:13.464Z","1.0.2-beta.40":"2021-04-14T03:57:58.731Z","1.0.2-beta.41":"2021-04-26T10:39:29.547Z","1.0.2-beta.42":"2021-05-09T03:35:04.628Z","1.0.2-beta.43":"2021-05-10T15:21:15.292Z","1.0.2-beta.44":"2021-05-11T03:25:05.315Z","1.0.2-beta.45":"2021-05-28T06:59:00.148Z","1.0.2-beta.46":"2021-06-03T06:57:26.875Z","1.0.2-beta.47":"2021-06-11T11:03:55.909Z","1.0.2-beta.48":"2021-06-12T00:55:20.206Z","1.0.2-beta.49":"2021-06-23T07:58:36.824Z","1.0.2-beta.50":"2021-06-23T12:13:36.922Z","1.0.2-beta.51":"2021-06-23T13:23:51.730Z","1.0.2-beta.52":"2021-06-24T04:40:12.481Z","1.0.2-beta.53":"2021-06-25T09:44:06.250Z","1.0.2-beta.54":"2021-07-02T06:40:29.232Z","1.0.2-beta.55":"2021-07-09T09:36:23.698Z","1.0.2-beta.56":"2021-07-23T10:02:34.648Z","1.0.2-beta.57":"2021-07-23T15:18:50.233Z","1.0.2-beta.58":"2021-07-24T04:24:24.159Z","1.0.2-beta.59":"2021-07-25T17:11:05.226Z","1.0.2-beta.60":"2021-07-26T03:08:01.859Z","1.0.2-beta.61":"2021-07-26T04:20:37.693Z","1.0.2-beta.62":"2021-07-26T05:00:45.926Z","1.0.2-beta.63":"2021-07-27T05:41:50.973Z","1.0.2-beta.64":"2021-07-28T04:43:41.961Z","1.0.2-beta.65":"2021-07-28T12:37:24.583Z","1.0.2-beta.66":"2021-08-03T13:41:04.255Z","1.0.2-beta.67":"2021-08-04T03:52:52.157Z","1.0.2-beta.68":"2021-08-04T10:57:37.859Z","1.0.2-beta.69":"2021-08-04T11:41:47.358Z","1.0.2-beta.70":"2021-08-05T14:44:18.429Z","1.0.2-beta.71":"2021-08-18T03:47:31.760Z","1.1.0-beta.1":"2021-08-24T09:03:52.395Z","1.1.0-beta.2":"2021-08-24T16:31:34.684Z","1.1.0-beta.3":"2021-08-24T17:36:31.540Z","1.1.0-beta.4":"2021-08-25T03:39:39.889Z","1.1.0-beta.5":"2021-08-25T10:11:07.688Z","1.1.0-beta.6":"2021-08-26T07:29:59.181Z","1.1.0-beta.7":"2021-08-26T14:17:24.973Z","1.1.0-beta.8":"2021-08-31T10:12:48.425Z","1.1.0-beta.9":"2021-09-05T15:41:27.347Z","1.1.0-beta.10":"2021-09-13T15:40:36.609Z","1.1.0-beta.11":"2021-09-14T18:20:01.715Z","1.1.0-beta.12":"2021-09-15T00:48:32.424Z","1.1.0-beta.13":"2021-09-22T09:21:52.346Z","1.1.0-beta.14":"2021-09-22T15:08:17.418Z","1.1.0-beta.15":"2021-09-23T01:09:05.154Z","1.1.0-beta.16":"2021-09-24T15:45:01.923Z","1.1.0-beta.17":"2021-09-27T04:24:46.650Z","1.1.0-beta.18":"2021-09-28T16:27:13.250Z","1.1.0-beta.19":"2021-09-30T12:06:39.918Z","1.1.0-beta.20":"2021-10-11T07:03:53.368Z","1.1.0-beta.21":"2021-10-18T08:56:27.021Z","1.1.0-beta.22":"2021-10-20T02:30:21.674Z","1.1.0-beta.23":"2021-10-20T02:55:45.603Z","1.1.0-beta.24":"2021-10-20T03:16:53.547Z","1.2.0-beta.1":"2021-10-31T02:56:54.675Z","1.2.0-beta.2":"2021-11-05T15:17:11.950Z","1.2.0-beta.3":"2021-11-09T03:58:09.425Z","1.2.0-beta.4":"2021-11-27T14:15:28.321Z","1.2.0-beta.5":"2021-12-01T08:30:10.073Z","1.2.0-beta.6":"2021-12-10T11:45:51.437Z","1.3.0-beta.1":"2021-12-31T04:06:13.070Z","1.3.0-beta.2":"2022-01-08T12:28:29.159Z","1.3.0-beta.3":"2022-01-09T10:46:12.626Z","1.3.0-beta.4":"2022-01-11T12:53:14.539Z","1.3.0-beta.5":"2022-01-12T03:07:55.791Z","1.3.0-beta.6":"2022-01-22T03:40:24.204Z","1.3.0-beta.7":"2022-01-22T11:46:08.126Z","1.3.0-beta.8":"2022-01-24T16:05:32.775Z","1.3.0-beta.9":"2022-01-25T14:11:27.806Z","1.3.0-beta.10":"2022-01-31T16:04:17.289Z","2.0.0":"2022-02-07T03:15:01.092Z","2.0.1":"2022-02-07T09:28:39.958Z","2.0.2":"2022-02-14T08:10:20.527Z","2.0.3":"2022-02-25T08:40:32.105Z","2.0.4":"2022-02-28T17:09:52.874Z","2.0.5":"2022-03-06T11:53:17.065Z","2.0.6":"2022-03-11T12:12:13.048Z","2.1.0":"2022-03-12T12:18:34.107Z","2.1.1":"2022-03-13T15:48:31.979Z","2.1.2":"2022-03-14T12:44:26.540Z","2.1.3":"2022-03-15T12:38:06.378Z","2.1.4":"2022-03-16T14:47:19.770Z","2.1.5":"2022-03-26T01:43:00.762Z","2.1.6":"2022-03-27T08:06:49.868Z","2.1.7":"2022-03-28T14:50:02.828Z","2.1.8":"2022-04-03T13:28:25.498Z","2.1.9":"2022-04-11T03:29:30.000Z","2.1.10":"2022-04-18T15:52:23.307Z","2.1.11":"2022-04-25T15:52:30.494Z","2.2.0":"2022-05-09T03:57:23.720Z","2.2.1":"2022-05-20T15:06:38.194Z","2.2.2":"2022-05-23T10:49:47.832Z","2.2.3":"2022-06-04T15:11:51.986Z","2.2.4":"2022-06-05T06:11:54.455Z","2.2.5":"2022-06-08T09:04:33.030Z","2.2.6":"2022-06-17T09:21:19.015Z","2.2.7":"2022-07-01T05:27:42.407Z","2.2.8":"2022-07-01T12:57:01.899Z","2.2.9":"2022-07-08T03:57:22.130Z","2.2.10":"2022-07-22T08:19:50.529Z","2.2.11":"2022-07-27T07:03:32.149Z","2.2.12":"2022-08-01T05:28:10.121Z","2.2.13":"2022-08-12T08:07:02.143Z","2.2.14":"2022-08-19T11:52:19.563Z","2.2.15":"2022-08-26T05:45:32.231Z","2.2.16":"2022-09-02T10:40:42.138Z","2.2.17":"2022-09-16T05:34:40.413Z","2.2.18":"2022-10-13T07:39:30.309Z","2.2.19":"2022-10-21T10:01:17.128Z","2.2.20":"2022-11-06T02:50:44.986Z","2.2.21":"2022-11-11T16:17:03.871Z","2.2.22":"2022-11-18T07:29:41.730Z","2.2.23":"2022-11-25T08:43:11.286Z","2.2.24":"2022-11-25T14:31:21.326Z","2.2.25":"2022-11-25T15:38:01.355Z","2.2.26":"2022-12-02T08:16:17.815Z","2.2.27":"2022-12-16T16:01:18.344Z","2.2.28":"2022-12-30T12:03:42.465Z","2.2.29":"2023-02-03T07:21:01.289Z","2.2.30":"2023-02-10T08:43:01.972Z","2.2.31":"2023-02-17T14:50:16.098Z","2.2.32":"2023-02-19T12:56:57.055Z","2.2.33":"2023-03-03T12:34:39.687Z","2.2.34":"2023-03-06T15:52:13.194Z","2.2.35":"2023-03-07T15:15:25.581Z","2.2.36":"2023-03-08T15:57:01.297Z","2.3.0":"2023-03-13T01:33:40.761Z","2.3.1":"2023-03-19T04:04:31.159Z","2.3.2":"2023-03-31T11:16:29.745Z","2.3.3":"2023-04-07T12:19:09.383Z","2.3.4":"2023-04-23T13:08:43.591Z","2.3.5":"2023-05-19T12:23:47.985Z","2.3.6":"2023-06-02T05:32:04.918Z","2.3.7":"2023-06-21T06:12:15.634Z","2.3.8":"2023-07-14T03:30:54.243Z","2.3.9":"2023-08-04T09:08:18.535Z","2.3.10":"2023-08-25T05:12:10.709Z","2.3.12":"2023-08-26T09:32:35.558Z","2.3.14":"2023-09-14T11:19:30.009Z","2.4.0":"2023-10-13T07:53:11.374Z","2.4.1":"2023-10-18T05:12:55.290Z","2.4.2":"2023-11-03T09:34:53.876Z","2.4.3":"2023-11-27T09:34:00.946Z","2.4.4":"2023-12-15T12:52:17.949Z","2.5.0":"2024-01-10T12:17:26.309Z","2.5.1":"2024-01-11T09:03:36.511Z","2.5.2":"2024-01-19T07:59:08.333Z","2.5.3":"2024-01-22T14:54:40.617Z","2.5.4":"2024-02-02T08:01:59.960Z","2.5.5":"2024-02-03T04:48:47.935Z","2.5.6":"2024-02-18T08:34:18.698Z","2.6.0":"2024-03-01T08:08:33.771Z","2.6.1":"2024-03-08T07:50:11.714Z","2.6.2":"2024-03-22T15:12:35.249Z","2.6.3":"2024-03-29T11:37:59.333Z","2.7.0":"2024-04-12T07:34:52.433Z","2.7.1":"2024-04-20T08:24:12.513Z","2.7.2":"2024-04-26T08:16:35.289Z","2.7.3":"2024-05-13T11:41:42.675Z","2.7.4":"2024-05-31T13:03:16.912Z","2.7.5":"2024-06-07T11:59:07.973Z","2.7.6":"2024-06-21T15:19:34.090Z","2.7.7":"2024-07-12T07:57:30.104Z","2.7.8":"2024-07-26T10:02:13.903Z","2.8.0":"2024-08-09T06:54:27.811Z","2.8.1":"2024-08-23T14:38:23.842Z","2.8.2":"2024-09-06T10:57:30.852Z","2.8.3":"2024-09-13T08:29:58.425Z","2.8.4":"2024-09-27T11:09:32.472Z","2.8.5":"2024-10-11T11:39:48.214Z","2.8.6":"2024-10-18T11:44:10.314Z","2.8.7":"2024-11-01T15:16:38.793Z","2.8.8":"2024-11-15T10:37:57.779Z","2.9.0":"2024-11-29T15:13:08.779Z","2.9.1":"2024-12-13T10:25:16.501Z","2.9.2":"2025-01-03T13:24:33.756Z","2.9.3":"2025-01-10T14:28:25.590Z","2.9.4":"2025-02-07T11:28:39.202Z","2.9.5":"2025-02-21T05:41:05.284Z","2.9.6":"2025-03-07T11:41:16.698Z","2.9.7":"2025-03-21T05:41:40.651Z","2.9.8":"2025-04-18T15:48:26.558Z","2.9.9":"2025-04-27T11:27:21.988Z","2.9.10":"2025-05-09T07:23:35.304Z","2.9.11":"2025-05-23T12:14:07.864Z","2.10.0":"2025-06-06T11:11:43.566Z","2.10.1":"2025-06-07T05:19:22.202Z","2.10.2":"2025-06-13T14:34:33.892Z","2.10.3":"2025-07-04T12:11:25.922Z","2.10.4":"2025-07-11T12:48:40.307Z","2.10.5":"2025-08-01T18:20:48.609Z","2.10.6":"2025-08-08T05:31:39.363Z","2.10.7":"2025-08-12T10:39:24.161Z","2.11.0":"2025-08-22T12:03:52.032Z","2.11.1":"2025-08-23T01:21:41.980Z","2.11.2":"2025-09-05T11:28:41.066Z","2.11.3":"2025-09-19T04:41:16.609Z","2.11.4":"2025-09-26T04:11:56.033Z","2.11.5":"2025-10-17T05:27:56.637Z","2.11.7":"2025-11-01T07:10:58.527Z","2.11.8":"2025-11-15T03:17:26.505Z","2.11.9":"2025-11-28T17:01:12.621Z","2.12.0":"2025-12-05T04:57:38.552Z","2.13.0":"2025-12-19T08:04:53.943Z","2.13.1":"2026-01-09T08:56:12.309Z","2.13.2":"2026-01-30T13:08:19.876Z","2.13.3":"2026-02-28T13:15:37.818Z","2.13.4":"2026-03-06T11:44:57.784Z","2.13.5":"2026-03-07T15:21:10.050Z","2.13.6":"2026-03-20T06:25:47.911Z"},"bugs":{"url":"https://github.com/element-plus/element-plus/issues"},"license":"MIT","homepage":"https://element-plus.org/","keywords":["element-plus","element","component library","ui framework","ui","vue"],"repository":{"type":"git","url":"git+https://github.com/element-plus/element-plus.git"},"description":"A Component Library for Vue 3","maintainers":[{"name":"iamkun","email":"kunhello@outlook.com"},{"name":"jeremywuuuuu","email":"jeremy577@icloud.com"}],"readme":"<p align=\"center\">\n <img width=\"300px\" src=\"https://user-images.githubusercontent.com/10731096/95823103-9ce15780-0d5f-11eb-8010-1bd1b5910d4f.png\">\n</p>\n\n<p align=\"center\">\n <a href=\"https://npmx.dev/package/element-plus\">\n <img src=\"https://npmx.dev/api/registry/badge/version/element-plus\" />\n </a>\n <a href=\"https://github.com/element-plus/element-plus\">\n <img src=\"https://img.shields.io/badge/node-%20%3E%3D%2020-47c219\" />\n </a>\n <a href=\"https://npmcharts.com/compare/element-plus?minimal=true\">\n <img src=\"https://img.shields.io/npm/dm/element-plus.svg\" />\n </a>\n <a href=\"https://codecov.io/gh/element-plus/element-plus\">\n <img src=\"https://codecov.io/gh/element-plus/element-plus/branch/dev/graph/badge.svg?token=BKSBO2GLZI\"/>\n </a>\n <br>\n</p>\n\n<p align=\"center\">Element Plus - A Vue.js 3 UI library</p>\n\n- πͺ Vue 3 Composition API\n- π₯ Written in TypeScript\n\n## Getting Started\n\nAlright, if you're looking to make Element Plus better, keep reading.\nFor developers using Element Plus to build websites, please visit [Getting Started](https://element-plus.org/).\n\n- δΈε½ε€§ι[ε ιιεη«ηΉ](https://cn.element-plus.org/zh-CN/)\n\n## Breaking Change List\n\nThe first stable release of Element Plus, suitable for production use, was released on February 7, 2022. The API is stable now, and here's a full list on how to upgrade from [Element UI](https://element.eleme.io) to Element Plus.\n\nYou can find the breaking change list here: [Breaking Change List](https://github.com/element-plus/element-plus/discussions/5658).\n\n### Migration Tool :hammer_and_wrench:\n\nWe have made a migration tool for you to migrate your project from [Element UI](https://element.eleme.io) to Element Plus.\n\nYou can find the [gogocode migration tool](https://github.com/thx/gogocode/tree/main/packages/gogocode-plugin-element) here.\n\nWe have tested this on [Vue Element Admin](https://github.com/PanJiaChen/vue-element-admin). You can find the transpiled code [here](https://github.com/gogocodeio/vue-element-admin).\n\n### Playground\n\nYou can also try out Element Plus with its built-in component playground.\n\n#### Try it with our built-in playground\n\n[Playground](https://element-plus.run/)\n\n#### Try it with CodeSandbox\n\n[](https://codesandbox.io/p/github/element-plus/element-plus-demo/main)\n\n<p align=\"center\">\n <b>Special thanks to our generous sponsors:</b>\n</p>\n<br/>\n<p align=\"center\">\n <b>Platinum Sponsors</b>\n</p>\n<table align=\"center\" cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr>\n <td align=\"center\" valign=\"middle\">\n <a href=\"https://www.jnpfsoft.com/index.html?from=elementUI\" target=\"_blank\">\n <img width=\"150px\" src=\"https://github.com/element-plus/element-plus/assets/17680888/6a044d82-c393-48ab-90b8-de0d3aad1624\">\n </a>\n </td>\n <td align=\"center\" valign=\"middle\">\n <a href=\"http://github.crmeb.net/u/Element?from=element-plus\" target=\"_blank\">\n <img width=\"150px\" src=\"https://github.com/user-attachments/assets/18079452-986c-4c6e-84ec-fb6175c26567\">\n </a>\n </td>\n </tr>\n </tbody>\n</table>\n<p align=\"center\">\n <b>Gold Sponsors</b>\n</p>\n<table align=\"center\" cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr>\n <td align=\"center\" valign=\"middle\">\n <a href=\"https://bit.dev/?from=element-ui\" target=\"_blank\">\n <img width=\"130px\" src=\"https://user-images.githubusercontent.com/10095631/41342907-e44e7196-6f2f-11e8-92f2-47702dc8f059.png\">\n </a>\n </td>\n </tr>\n </tbody>\n</table>\n\n---\n\n## Translations\n\nElement Plus has been translated into multiple languages. You can click [here](https://crowdin.com/project/element-plus) to help us update the translations or apply to become a proofreader.\n\nFor now, we are only providing English and Chinese versions due to limited resources, but we are looking forward to translating it into more languages. Please visit the link\nabove and leave a message if you would like to help translate Element Plus into your preferred language.\n\n### How to help translate\n\nSee how to help translate in [Translating Element Plus](https://element-plus.org/en-US/guide/translation.html).\n\n## Stay tuned :eyes:\n\nJoin our [Discord](https://discord.com/invite/gXK9XNzW3X) to start communicating with everybody.\n\n## This thing is broken, I should help improve it!\n\nAwesommmmmmee. Everything you need is down below. You can also refer to\n[CONTRIBUTING](https://github.com/element-plus/element-plus/blob/dev/CONTRIBUTING.md) and\n[Code of Conduct](https://github.com/element-plus/element-plus/blob/dev/CODE_OF_CONDUCT.md)\nwhere you'll find the same information listed below.\n\n## I would like to become a part of the development team!\n\nWelcome :star_struck:! We are looking for talented developers to join us and make Element Plus better! If you're interested in joining the development team, please\nreach out to us -- you're more than welcome to join us! :heart:\n\nWe are now looking for experts in `Testing`, `GitHub Actions` and `PM`. If you feel like you can and are willing to help, please don't hesitate to reach out to us. :pray:\n\n## Contributors\n\nThis project exists thanks to all the people who contribute.\n\nAnd thank you to all our backers! π\n\n<a href=\"https://openomy.app/github/element-plus/element-plus\" target=\"_blank\" style=\"display: block; width: 100%;\" align=\"center\">\n <img src=\"https://openomy.app/svg?repo=element-plus/element-plus&chart=bubble&latestMonth=3\" target=\"_blank\" alt=\"Contribution Leaderboard\" style=\"display: block; width: 100%;\" />\n</a>\n\n<hr />\n\n<a href=\"https://github.com/element-plus/element-plus/graphs/contributors\">\n <img src=\"https://contrib.rocks/image?repo=element-plus/element-plus\" />\n</a>\n\n## License\n\nElement Plus is open source software licensed as\n[MIT](https://github.com/element-plus/element-plus/blob/master/LICENSE).\n","readmeFilename":"README.md","users":{"ycolin":true,"cologler":true}}
|