package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "@tabler/icons-react",
  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. "homepage": "https://tabler-icons.io",
  8. "bugs": {
  9. "url": "https://github.com/tabler/tabler-icons/issues"
  10. },
  11. "funding": {
  12. "type": "github",
  13. "url": "https://github.com/sponsors/codecalm"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/tabler/tabler-icons.git",
  18. "directory": "packages/icons-react"
  19. },
  20. "main": "./dist/cjs/tabler-icons-react.cjs",
  21. "types": "./dist/esm/tabler-icons-react.d.ts",
  22. "module": "./dist/esm/tabler-icons-react.mjs",
  23. "sideEffects": false,
  24. "files": [
  25. "dist"
  26. ],
  27. "scripts": {
  28. "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons && pnpm typecheck && pnpm run build:bundles",
  29. "build:icons": "node build.mjs",
  30. "build:bundles": "rollup -c ./rollup.config.mjs",
  31. "copy:license": "cp ../../LICENSE ./LICENSE",
  32. "clean": "rm -rf dist && find . ! -name '.gitkeep' -path '*/src/icons/*' -exec rm -rf {} +",
  33. "test": "vitest run --typecheck",
  34. "typecheck": "tsc",
  35. "imports-check": "attw $(npm pack)"
  36. },
  37. "dependencies": {
  38. "@tabler/icons": "3.5.0"
  39. },
  40. "devDependencies": {
  41. "@testing-library/react": "^14.2.1",
  42. "@types/react": "18.2.60",
  43. "@vitejs/plugin-react": "^4.2.1",
  44. "react": "18.2.0",
  45. "react-dom": "18.2.0",
  46. "react-test-renderer": "18.2.0"
  47. },
  48. "peerDependencies": {
  49. "react": ">= 16"
  50. }
  51. }