package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "@element-plus/icons-vue",
  3. "version": "2.3.2",
  4. "description": "Vue components of Element Plus Icons collection.",
  5. "type": "module",
  6. "keywords": [
  7. "icon",
  8. "svg",
  9. "vue",
  10. "element-plus"
  11. ],
  12. "license": "MIT",
  13. "homepage": "https://element-plus.org/",
  14. "bugs": {
  15. "url": "https://github.com/element-plus/element-plus-icons/issues"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/element-plus/element-plus-icons.git",
  20. "directory": "packages/vue"
  21. },
  22. "files": [
  23. "dist"
  24. ],
  25. "main": "./dist/index.cjs",
  26. "module": "./dist/index.js",
  27. "types": "./dist/types/index.d.ts",
  28. "exports": {
  29. ".": {
  30. "types": "./dist/types/index.d.ts",
  31. "require": "./dist/index.cjs",
  32. "import": "./dist/index.js"
  33. },
  34. "./global": {
  35. "types": "./dist/types/global.d.ts",
  36. "require": "./dist/global.cjs",
  37. "import": "./dist/global.js"
  38. },
  39. "./*": "./*"
  40. },
  41. "typesVersions": {
  42. "*": {
  43. "*": [
  44. "./*",
  45. "./dist/types/*"
  46. ]
  47. }
  48. },
  49. "sideEffects": false,
  50. "unpkg": "dist/index.iife.min.js",
  51. "jsdelivr": "dist/index.iife.min.js",
  52. "peerDependencies": {
  53. "vue": "^3.2.0"
  54. },
  55. "devDependencies": {
  56. "@pnpm/find-workspace-dir": "^1000.1.2",
  57. "@pnpm/find-workspace-packages": "^6.0.9",
  58. "@pnpm/logger": "^1001.0.0",
  59. "@types/fs-extra": "^11.0.4",
  60. "@types/node": "^24.2.0",
  61. "camelcase": "^8.0.0",
  62. "chalk": "^5.5.0",
  63. "consola": "^3.4.2",
  64. "esbuild": "^0.25.8",
  65. "esbuild-plugin-globals": "^0.2.0",
  66. "fast-glob": "^3.3.3",
  67. "fs-extra": "^11.3.0",
  68. "npm-run-all": "^4.1.5",
  69. "prettier": "^3.6.2",
  70. "tsx": "^4.20.3",
  71. "typescript": "^5.9.2",
  72. "unplugin-vue": "^7.0.1",
  73. "vue": "^3.5.18",
  74. "vue-tsc": "^3.0.5",
  75. "@element-plus/icons-svg": "2.3.2"
  76. },
  77. "scripts": {
  78. "build": "pnpm run build:generate && run-p build:build build:types",
  79. "build:generate": "tsx build/generate.ts",
  80. "build:build": "NODE_ENV=production tsx build/build.ts",
  81. "build:types": "vue-tsc --declaration --emitDeclarationOnly"
  82. }
  83. }