package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "@radix-ui/react-select",
  3. "version": "1.2.2",
  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/number": "1.0.1",
  33. "@radix-ui/primitive": "1.0.1",
  34. "@radix-ui/react-collection": "1.0.3",
  35. "@radix-ui/react-compose-refs": "1.0.1",
  36. "@radix-ui/react-context": "1.0.1",
  37. "@radix-ui/react-direction": "1.0.1",
  38. "@radix-ui/react-dismissable-layer": "1.0.4",
  39. "@radix-ui/react-focus-guards": "1.0.1",
  40. "@radix-ui/react-focus-scope": "1.0.3",
  41. "@radix-ui/react-id": "1.0.1",
  42. "@radix-ui/react-popper": "1.1.2",
  43. "@radix-ui/react-portal": "1.0.3",
  44. "@radix-ui/react-primitive": "1.0.3",
  45. "@radix-ui/react-slot": "1.0.2",
  46. "@radix-ui/react-use-callback-ref": "1.0.1",
  47. "@radix-ui/react-use-controllable-state": "1.0.1",
  48. "@radix-ui/react-use-layout-effect": "1.0.1",
  49. "@radix-ui/react-use-previous": "1.0.1",
  50. "@radix-ui/react-visually-hidden": "1.0.3",
  51. "aria-hidden": "^1.1.1",
  52. "react-remove-scroll": "2.5.5"
  53. },
  54. "peerDependencies": {
  55. "@types/react": "*",
  56. "@types/react-dom": "*",
  57. "react": "^16.8 || ^17.0 || ^18.0",
  58. "react-dom": "^16.8 || ^17.0 || ^18.0"
  59. },
  60. "peerDependenciesMeta": {
  61. "@types/react": {
  62. "optional": true
  63. },
  64. "@types/react-dom": {
  65. "optional": true
  66. }
  67. },
  68. "homepage": "https://radix-ui.com/primitives",
  69. "repository": {
  70. "type": "git",
  71. "url": "git+https://github.com/radix-ui/primitives.git"
  72. },
  73. "bugs": {
  74. "url": "https://github.com/radix-ui/primitives/issues"
  75. }
  76. }