package.json 878 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "@vben/icons",
  3. "version": "5.0.0",
  4. "homepage": "https://github.com/vbenjs/vue-vben-admin",
  5. "bugs": "https://github.com/vbenjs/vue-vben-admin/issues",
  6. "repository": {
  7. "type": "git",
  8. "url": "git+https://github.com/vbenjs/vue-vben-admin.git",
  9. "directory": "packages/icons"
  10. },
  11. "license": "MIT",
  12. "type": "module",
  13. "scripts": {
  14. "build": "pnpm unbuild",
  15. "stub": "pnpm unbuild --stub"
  16. },
  17. "files": [
  18. "dist"
  19. ],
  20. "main": "./dist/index.mjs",
  21. "module": "./dist/index.mjs",
  22. "exports": {
  23. ".": {
  24. "types": "./src/index.ts",
  25. "development": "./src/index.ts",
  26. "default": "./dist/index.mjs"
  27. }
  28. },
  29. "publishConfig": {
  30. "exports": {
  31. ".": {
  32. "types": "./dist/index.d.ts",
  33. "default": "./dist/index.mjs"
  34. }
  35. }
  36. },
  37. "dependencies": {
  38. "@vben-core/iconify": "workspace:*"
  39. }
  40. }