package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "name": "element-plus",
  3. "version": "0.0.0-dev.1",
  4. "description": "A Component Library for Vue 3",
  5. "keywords": [
  6. "element-plus",
  7. "element",
  8. "component library",
  9. "ui framework",
  10. "ui",
  11. "vue"
  12. ],
  13. "homepage": "https://element-plus.org/",
  14. "bugs": {
  15. "url": "https://github.com/element-plus/element-plus/issues"
  16. },
  17. "license": "MIT",
  18. "main": "lib/index.js",
  19. "module": "es/index.mjs",
  20. "types": "es/index.d.ts",
  21. "exports": {
  22. ".": {
  23. "types": "./es/index.d.ts",
  24. "import": "./es/index.mjs",
  25. "require": "./lib/index.js"
  26. },
  27. "./es": "./es/index.mjs",
  28. "./lib": "./lib/index.js",
  29. "./es/*.mjs": "./es/*.mjs",
  30. "./es/*": "./es/*.mjs",
  31. "./lib/*.js": "./lib/*.js",
  32. "./lib/*": "./lib/*.js",
  33. "./*": "./*"
  34. },
  35. "unpkg": "dist/index.full.js",
  36. "jsdelivr": "dist/index.full.js",
  37. "repository": {
  38. "type": "git",
  39. "url": "git+https://github.com/element-plus/element-plus.git"
  40. },
  41. "publishConfig": {
  42. "access": "public"
  43. },
  44. "style": "dist/index.css",
  45. "sideEffects": [
  46. "dist/*",
  47. "theme-chalk/**/*.css",
  48. "theme-chalk/src/**/*.scss",
  49. "es/components/*/style/*",
  50. "lib/components/*/style/*"
  51. ],
  52. "peerDependencies": {
  53. "vue": "^3.2.0"
  54. },
  55. "dependencies": {
  56. "@ctrl/tinycolor": "^3.4.1",
  57. "@element-plus/icons-vue": "^2.0.6",
  58. "@floating-ui/dom": "^1.0.1",
  59. "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7",
  60. "@types/lodash": "^4.14.182",
  61. "@types/lodash-es": "^4.17.6",
  62. "@vueuse/core": "^9.1.0",
  63. "async-validator": "^4.2.5",
  64. "dayjs": "^1.11.3",
  65. "escape-html": "^1.0.3",
  66. "lodash": "^4.17.21",
  67. "lodash-es": "^4.17.21",
  68. "lodash-unified": "^1.0.2",
  69. "memoize-one": "^6.0.0",
  70. "normalize-wheel-es": "^1.2.0"
  71. },
  72. "devDependencies": {
  73. "@types/node": "*",
  74. "csstype": "^2.6.20",
  75. "vue": "^3.2.37",
  76. "vue-router": "^4.0.16"
  77. },
  78. "vetur": {
  79. "tags": "tags.json",
  80. "attributes": "attributes.json"
  81. },
  82. "web-types": "web-types.json",
  83. "browserslist": [
  84. "> 1%",
  85. "not ie 11",
  86. "not op_mini all"
  87. ]
  88. }