package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "@tabler/icons-pdf",
  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. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/tabler/tabler-icons.git",
  16. "directory": "packages/icons-pdf"
  17. },
  18. "scripts": {
  19. "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons",
  20. "build:icons": "node build.mjs",
  21. "clean": "rm -rf dist && find . ! -name '.gitkeep' -path '*/icons/*' -exec rm -rf {} +",
  22. "copy:license": "cp ../../LICENSE ./LICENSE"
  23. },
  24. "files": [
  25. "icons/*.pdf"
  26. ],
  27. "exports": {
  28. "./*": [
  29. "./icons/*"
  30. ]
  31. },
  32. "dependencies": {
  33. "@tabler/icons": "3.5.0"
  34. },
  35. "keywords": [
  36. "icons",
  37. "svg",
  38. "png",
  39. "iconfont",
  40. "react",
  41. "front-end",
  42. "web"
  43. ]
  44. }