package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "@radix-ui/react-toggle-group",
  3. "version": "1.0.4",
  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/primitive": "1.0.1",
  33. "@radix-ui/react-context": "1.0.1",
  34. "@radix-ui/react-direction": "1.0.1",
  35. "@radix-ui/react-primitive": "1.0.3",
  36. "@radix-ui/react-roving-focus": "1.0.4",
  37. "@radix-ui/react-toggle": "1.0.3",
  38. "@radix-ui/react-use-controllable-state": "1.0.1"
  39. },
  40. "peerDependencies": {
  41. "@types/react": "*",
  42. "@types/react-dom": "*",
  43. "react": "^16.8 || ^17.0 || ^18.0",
  44. "react-dom": "^16.8 || ^17.0 || ^18.0"
  45. },
  46. "peerDependenciesMeta": {
  47. "@types/react": {
  48. "optional": true
  49. },
  50. "@types/react-dom": {
  51. "optional": true
  52. }
  53. },
  54. "homepage": "https://radix-ui.com/primitives",
  55. "repository": {
  56. "type": "git",
  57. "url": "git+https://github.com/radix-ui/primitives.git"
  58. },
  59. "bugs": {
  60. "url": "https://github.com/radix-ui/primitives/issues"
  61. }
  62. }