package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "@tabler/icons-react-native",
  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. "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. "amdName": "tabler-icons-react-native",
  22. "main": "dist/cjs/tabler-icons-react-native.js",
  23. "main:umd": "dist/umd/tabler-icons-react-native.js",
  24. "module": "dist/esm/tabler-icons-react-native.js",
  25. "unpkg": "dist/umd/tabler-icons-react-native.min.js",
  26. "typings": "dist/tabler-icons-react-native.d.ts",
  27. "react-native": "dist/esm/tabler-icons-react-native.js",
  28. "sideEffects": false,
  29. "files": [
  30. "dist"
  31. ],
  32. "scripts": {
  33. "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons && pnpm typecheck && pnpm run build:bundles",
  34. "build:icons": "node build.mjs",
  35. "build:bundles": "rollup -c ./rollup.config.mjs",
  36. "copy:license": "cp ../../LICENSE ./LICENSE",
  37. "clean": "rm -rf dist && find . ! -name '.gitkeep' -path '*/src/icons/*' -exec rm -rf {} +",
  38. "test": "vitest run",
  39. "typecheck": "tsc"
  40. },
  41. "dependencies": {
  42. "@tabler/icons": "3.0.0-beta"
  43. },
  44. "devDependencies": {
  45. "@babel/preset-env": "7.23.8",
  46. "@babel/preset-react": "7.23.3",
  47. "@testing-library/react": "^14.1.2",
  48. "@types/react": "18.2.48",
  49. "@vitejs/plugin-react": "^4.2.1",
  50. "babel-jest": "^29.7.0",
  51. "react": "18.2.0",
  52. "react-dom": "18.2.0",
  53. "react-native": "^0.73.1",
  54. "react-native-svg": "^14.1.0",
  55. "react-test-renderer": "18.2.0"
  56. },
  57. "peerDependencies": {
  58. "react": "^16.5.1 || ^17.0.0 || ^18.0.0"
  59. }
  60. }