package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "@tabler/icons-react",
  3. "version": "2.4.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.js",
  21. "main:umd": "dist/umd/tabler-icons-react.js",
  22. "module": "dist/esm/tabler-icons-react.js",
  23. "unpkg": "dist/umd/tabler-icons-react.min.js",
  24. "typings": "dist/tabler-icons-react.d.ts",
  25. "sideEffects": false,
  26. "files": [
  27. "dist"
  28. ],
  29. "scripts": {
  30. "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons && pnpm run build:bundles",
  31. "build:icons": "node build.mjs",
  32. "build:bundles": "rollup -c ./rollup.config.mjs",
  33. "copy:license": "cp ../../LICENSE ./LICENSE",
  34. "clean": "rm -rf dist && rm -rf ./src/icons/*.js",
  35. "test": "pnpm run clean && pnpm run build:icons && jest --env=jsdom"
  36. },
  37. "dependencies": {
  38. "@tabler/icons": "2.4.0",
  39. "prop-types": "^15.7.2"
  40. },
  41. "devDependencies": {
  42. "@babel/preset-env": "7.11.5",
  43. "@babel/preset-react": "7.10.4",
  44. "@testing-library/react": "^11.2.6",
  45. "babel-jest": "^29.4.1",
  46. "jest": "^29.4.1",
  47. "jest-environment-jsdom": "^29.4.1",
  48. "prop-types": "^15.8.1",
  49. "react": "^17.0.2",
  50. "react-dom": "^17.0.2",
  51. "react-test-renderer": "^17.0.2"
  52. },
  53. "peerDependencies": {
  54. "react": "^16.5.1 || ^17.0.0 || ^18.0.0"
  55. },
  56. "jest": {
  57. "transform": {
  58. "^.+\\.js$": "babel-jest"
  59. }
  60. }
  61. }