package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "@tabler/icons-react-native",
  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-native"
  19. },
  20. "type": "module",
  21. "main": "./dist/cjs/tabler-icons-react-native.cjs",
  22. "types": "./dist/cjs/tabler-icons-react-native.d.cts",
  23. "module": "./dist/esm/tabler-icons-react-native.mjs",
  24. "react-native": "./dist/esm/tabler-icons-react-native.mjs",
  25. "exports": {
  26. ".": {
  27. "require": {
  28. "types": "./dist/cjs/tabler-icons-react-native.d.cts",
  29. "default": "./dist/cjs/tabler-icons-react-native.cjs"
  30. },
  31. "import": {
  32. "types": "./dist/esm/tabler-icons-react-native.d.ts",
  33. "default": "./dist/esm/tabler-icons-react-native.cjs"
  34. }
  35. }
  36. },
  37. "sideEffects": false,
  38. "files": [
  39. "dist"
  40. ],
  41. "scripts": {
  42. "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons && pnpm typecheck && pnpm run build:bundles",
  43. "build:icons": "node build.mjs",
  44. "build:bundles": "rollup -c ./rollup.config.mjs",
  45. "copy:license": "cp ../../LICENSE ./LICENSE",
  46. "clean": "rm -rf dist && find . ! -name '.gitkeep' -path '*/src/icons/*' -exec rm -rf {} +",
  47. "typecheck": "tsc",
  48. "imports-check": "attw $(npm pack)"
  49. },
  50. "dependencies": {
  51. "@tabler/icons": "3.5.0"
  52. },
  53. "devDependencies": {
  54. "@testing-library/react": "^14.2.1",
  55. "@types/react": "18.2.60",
  56. "@vitejs/plugin-react": "^4.2.1",
  57. "react": "18.2.0",
  58. "react-dom": "18.2.0",
  59. "react-native": "^0.73.5",
  60. "react-native-svg": "^15.0.0",
  61. "react-test-renderer": "18.2.0"
  62. },
  63. "peerDependencies": {
  64. "react": "^16.5.1 || ^17.0.0 || ^18.0.0"
  65. }
  66. }