package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@tabler/icons",
  3. "version": "3.5.0",
  4. "license": "MIT",
  5. "author": "codecalm",
  6. "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.",
  7. "repository": {
  8. "type": "git",
  9. "url": "git+https://github.com/tabler/tabler-icons.git"
  10. },
  11. "exports": {
  12. "./*": [
  13. "./icons/*"
  14. ]
  15. },
  16. "sideEffects": false,
  17. "files": [
  18. "icons.json",
  19. "tabler-nodes-filled.json",
  20. "tabler-nodes-outline.json",
  21. "icons/*",
  22. "categories/*"
  23. ],
  24. "homepage": "https://tabler-icons.io",
  25. "bugs": {
  26. "url": "https://github.com/tabler/tabler-icons/issues"
  27. },
  28. "funding": {
  29. "type": "github",
  30. "url": "https://github.com/sponsors/codecalm"
  31. },
  32. "scripts": {
  33. "build": "pnpm run clean && pnpm run copy && pnpm run build:icons",
  34. "build:icons": "node build.mjs",
  35. "copy": "pnpm run copy:license",
  36. "copy:license": "cp ../../LICENSE ./LICENSE",
  37. "clean": "rm -rf dist && find . ! -name '.gitkeep' -path '*/categories/*' -exec rm -rf {} + && rm -rf dist && find . ! -name '.gitkeep' -path '*/icons/*' -exec rm -rf {} +"
  38. },
  39. "keywords": [
  40. "icons",
  41. "svg",
  42. "png",
  43. "iconfont",
  44. "react",
  45. "front-end",
  46. "web"
  47. ]
  48. }