package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "@tabler/icons-react",
  3. "version": "2.0.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. "repository": {
  8. "type": "git",
  9. "url": "git+https://github.com/tabler/tabler-icons.git",
  10. "directory": "packages/icons-react"
  11. },
  12. "main": "dist/cjs/tabler-icons-react.js",
  13. "main:umd": "dist/umd/tabler-icons-react.js",
  14. "module": "dist/esm/tabler-icons-react.js",
  15. "unpkg": "dist/umd/tabler-icons-react.min.js",
  16. "typings": "dist/tabler-icons-react.d.ts",
  17. "sideEffects": false,
  18. "files": [
  19. "dist"
  20. ],
  21. "scripts": {
  22. "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons && pnpm run build:bundles",
  23. "build:icons": "node build.mjs",
  24. "build:bundles": "rollup -c ./rollup.config.mjs",
  25. "copy:license": "cp ../../LICENSE ./LICENSE",
  26. "clean": "rm -rf dist && rm -rf ./src/icons/*.js",
  27. "test": "echo 'ok'"
  28. },
  29. "dependencies": {
  30. "@tabler/icons": "2.0.0"
  31. },
  32. "devDependencies": {
  33. "@testing-library/react": "^11.2.6",
  34. "babel-preset-react-app": "^10.0.0",
  35. "jest": "^26.6.3",
  36. "prop-types": "^15.8.1",
  37. "react": "^17.0.2",
  38. "react-dom": "^17.0.2"
  39. },
  40. "peerDependencies": {
  41. "prop-types": "^15.7.2",
  42. "react": "^16.5.1 || ^17.0.0 || ^18.0.0"
  43. }
  44. }