package.json 861 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "@tabler/icons-png",
  3. "version": "2.0.0",
  4. "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.",
  5. "homepage": "https://tabler-icons.io",
  6. "bugs": {
  7. "url": "https://github.com/tabler/tabler-icons/issues"
  8. },
  9. "funding": {
  10. "type": "github",
  11. "url": "https://github.com/sponsors/codecalm"
  12. },
  13. "scripts": {
  14. "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons",
  15. "build:icons": "node build.mjs",
  16. "clean": "rm -rf icons && mkdir icons",
  17. "copy:license": "cp ../../LICENSE ./LICENSE"
  18. },
  19. "files": [
  20. "icons/*.png"
  21. ],
  22. "exports": {
  23. "./*": [
  24. "./icons/*"
  25. ]
  26. },
  27. "dependencies": {
  28. "@tabler/icons": "2.0.0"
  29. },
  30. "keywords": [
  31. "icons",
  32. "svg",
  33. "png",
  34. "iconfont",
  35. "react",
  36. "front-end",
  37. "web"
  38. ]
  39. }