package.json 935 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@tabler/icons-eps",
  3. "version": "3.5.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 dist && find . ! -name '.gitkeep' -path '*/icons/*' -exec rm -rf {} +",
  17. "copy:license": "cp ../../LICENSE ./LICENSE"
  18. },
  19. "files": [
  20. "icons/*.eps"
  21. ],
  22. "exports": {
  23. "./*": [
  24. "./icons/*"
  25. ]
  26. },
  27. "dependencies": {
  28. "@tabler/icons": "3.5.0"
  29. },
  30. "keywords": [
  31. "icons",
  32. "svg",
  33. "png",
  34. "iconfont",
  35. "react",
  36. "front-end",
  37. "web",
  38. "eps",
  39. "vector"
  40. ]
  41. }