package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "@radix-ui/react-visually-hidden",
  3. "version": "1.0.3",
  4. "license": "MIT",
  5. "exports": {
  6. ".": {
  7. "import": {
  8. "types": "./dist/index.d.mts",
  9. "default": "./dist/index.mjs"
  10. },
  11. "require": {
  12. "types": "./dist/index.d.ts",
  13. "default": "./dist/index.js"
  14. }
  15. }
  16. },
  17. "source": "./src/index.ts",
  18. "main": "./dist/index.js",
  19. "module": "./dist/index.mjs",
  20. "types": "./dist/index.d.ts",
  21. "files": [
  22. "dist",
  23. "README.md"
  24. ],
  25. "sideEffects": false,
  26. "scripts": {
  27. "clean": "rm -rf dist",
  28. "version": "yarn version"
  29. },
  30. "dependencies": {
  31. "@babel/runtime": "^7.13.10",
  32. "@radix-ui/react-primitive": "1.0.3"
  33. },
  34. "peerDependencies": {
  35. "@types/react": "*",
  36. "@types/react-dom": "*",
  37. "react": "^16.8 || ^17.0 || ^18.0",
  38. "react-dom": "^16.8 || ^17.0 || ^18.0"
  39. },
  40. "peerDependenciesMeta": {
  41. "@types/react": {
  42. "optional": true
  43. },
  44. "@types/react-dom": {
  45. "optional": true
  46. }
  47. },
  48. "homepage": "https://radix-ui.com/primitives",
  49. "repository": {
  50. "type": "git",
  51. "url": "git+https://github.com/radix-ui/primitives.git"
  52. },
  53. "bugs": {
  54. "url": "https://github.com/radix-ui/primitives/issues"
  55. }
  56. }