mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-01 02:37:46 +08:00
5d9037a8b5
* fix: stop pinning vue peer dependency version It should be safe to trust `vue` to follow semver. Pinning a peer dependency version is a bad idea because any change in peer dependency requirement should be considered a breaking change in theory. On the other hand, `@vue/compiler-sfc` has a strict peer dependency version requirement. So pinning the `vue` version is likely to causing issues like https://github.com/vitejs/vite/issues/4573 in the future. * chore: update lockfile
29 lines
757 B
JSON
29 lines
757 B
JSON
{
|
|
"name": "@element-plus/components",
|
|
"version": "0.0.5",
|
|
"description": "all components are settled here",
|
|
"dependencies": {
|
|
"@element-plus/icons": "^0.0.11",
|
|
"@element-plus/directives": "^0.0.5",
|
|
"@element-plus/hooks": "^0.0.5",
|
|
"@element-plus/tokens": "^0.0.5",
|
|
"@element-plus/utils": "^0.0.5",
|
|
"@element-plus/theme-chalk": "^0.0.5",
|
|
"@popperjs/core": "^2.4.4",
|
|
"async-validator": "^3.4.0",
|
|
"dayjs": "1.x",
|
|
"lodash": "^4.17.20",
|
|
"mitt": "^2.1.0"
|
|
},
|
|
"peerDependencies": {
|
|
"vue": "^3.2.0"
|
|
},
|
|
"main": "index.js",
|
|
"module": "index.js",
|
|
"types": "index.d.ts",
|
|
"unpkg": "index.js",
|
|
"jsdelivr": "index.js",
|
|
"sideEffects": false,
|
|
"gitHead": "c69724230befa8fede0e6b9c37fb0b7e39fd7cdd"
|
|
}
|