package.json 1.7 KB

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