package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "@tabler/icons",
  3. "version": "3.0.0-beta",
  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. "main": "dist/cjs/tabler-icons.js",
  12. "main:umd": "dist/umd/tabler-icons.js",
  13. "exports": {
  14. "./*": [
  15. "./icons/*"
  16. ]
  17. },
  18. "module": "dist/esm/tabler-icons.js",
  19. "unpkg": "dist/umd/tabler-icons.min.js",
  20. "typings": "dist/tabler-icons.d.ts",
  21. "sideEffects": false,
  22. "files": [
  23. "icons.json",
  24. "tabler-nodes-filled.json",
  25. "tabler-nodes-outline.json",
  26. "icons/*",
  27. "categories/*"
  28. ],
  29. "homepage": "https://tabler-icons.io",
  30. "bugs": {
  31. "url": "https://github.com/tabler/tabler-icons/issues"
  32. },
  33. "funding": {
  34. "type": "github",
  35. "url": "https://github.com/sponsors/codecalm"
  36. },
  37. "scripts": {
  38. "build": "pnpm run clean && pnpm run copy && pnpm run build:icons",
  39. "build:icons": "node build.mjs",
  40. "copy": "pnpm run copy:license",
  41. "copy:license": "cp ../../LICENSE ./LICENSE",
  42. "clean": "rm -rf dist && find . ! -name '.gitkeep' -path '*/categories/*' -exec rm -rf {} + && rm -rf dist && find . ! -name '.gitkeep' -path '*/icons/*' -exec rm -rf {} +"
  43. },
  44. "keywords": [
  45. "icons",
  46. "svg",
  47. "png",
  48. "iconfont",
  49. "react",
  50. "front-end",
  51. "web"
  52. ]
  53. }