element-plus/packages/hooks/package.json
Haoqun Jiang 5d9037a8b5
fix: stop pinning vue peer dependency version (#3051)
* 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
2021-08-25 17:34:57 +08:00

36 lines
867 B
JSON

{
"name": "@element-plus/hooks",
"description": "Element Plus composables",
"version": "0.0.5",
"main": "index.js",
"module": "index.js",
"unpkg": "index.js",
"jsdelivr": "index.js",
"types": "index.d.ts",
"license": "MIT",
"peerDependencies": {
"vue": "^3.2.0"
},
"scripts": {
"clean": "rm -rf lib",
"build": "gulp build"
},
"dependencies": {
"@element-plus/directives": "^0.0.5",
"@element-plus/utils": "^0.0.5",
"@element-plus/locale": "^0.0.5",
"@popperjs/core": "^2.4.4"
},
"devDependencies": {
"@element-plus/test-utils": "^0.0.5",
"@vue/test-utils": "^2.0.0-beta.3",
"chalk": "^4.1.2",
"gulp": "^4.0.2",
"gulp-typescript": "^6.0.0-alpha.1",
"sass": "^1.37.0",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"gitHead": "c69724230befa8fede0e6b9c37fb0b7e39fd7cdd"
}