mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* chore: upgrade deps * chore: replace __ExtractPublicPropTypes with ExtractPublicPropTypes * fix: get rid of type errors * fix: resolve test errors with @vue/test-utils v2.4.6 * fix: resolve test errors with Vue 3.5.22 * ci: set pnpm flag * chore: update the Vue peer dependency version * Apply suggestion from @tolking Co-authored-by: qiang <qw13131wang@gmail.com> * docs: update example code Co-authored-by: warmthsea <2586244885@qq.com> * chore: remove csstype (#22487) * chore: fix merge code type error * chore: fix test:ssr error - Cannot read properties of undefined (reading 'getSSRProps') * chore: fix typecheck:vitest error * chore: update pnpm yaml file * test: fix collapse accordion error * chore: update deps * chore: fix type error * chore: lock file * chore: sync change sync with the remove of vue macro * refactor: use computed instead of eagerComputed * fix: timeline.test.tsx typecheck * chore: clean lock file try dont throw CodeFactor issues in ci did: - rm pnpm-lock.yaml - rm -rf ./**/node_modules - pnpm store prune - pnpm cache delete - pnpm install Also stay in 3.1.0 for vue-tsc in order to avoid the warnings of template refs, see https://github.com/vuejs/language-tools/issues/5815 * chore: format code --------- Co-authored-by: Dsaquel <291874700n@gmail.com> Co-authored-by: qiang <qw13131wang@gmail.com> Co-authored-by: warmthsea <2586244885@qq.com> Co-authored-by: Noblet Ouways <91417411+Dsaquel@users.noreply.github.com> Co-authored-by: sea <45450994+warmthsea@users.noreply.github.com> Co-authored-by: btea <2356281422@qq.com>
113 lines
2.5 KiB
JSON
113 lines
2.5 KiB
JSON
{
|
|
"name": "element-plus",
|
|
"version": "0.0.0-dev.1",
|
|
"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": "^3.4.1",
|
|
"@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": "catalog:",
|
|
"async-validator": "^4.2.5",
|
|
"dayjs": "^1.11.19",
|
|
"lodash": "^4.17.21",
|
|
"lodash-es": "^4.17.21",
|
|
"lodash-unified": "^1.0.3",
|
|
"memoize-one": "^6.0.0",
|
|
"normalize-wheel-es": "^1.2.0"
|
|
},
|
|
"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"
|
|
]
|
|
}
|