package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "cmdk",
  3. "version": "1.1.1",
  4. "license": "MIT",
  5. "main": "./dist/index.js",
  6. "module": "./dist/index.mjs",
  7. "types": "./dist/index.d.ts",
  8. "files": [
  9. "dist"
  10. ],
  11. "exports": {
  12. ".": {
  13. "types": "./dist/index.d.ts",
  14. "import": "./dist/index.mjs",
  15. "require": "./dist/index.js"
  16. }
  17. },
  18. "peerDependencies": {
  19. "react": "^18 || ^19 || ^19.0.0-rc",
  20. "react-dom": "^18 || ^19 || ^19.0.0-rc"
  21. },
  22. "dependencies": {
  23. "@radix-ui/react-compose-refs": "^1.1.1",
  24. "@radix-ui/react-dialog": "^1.1.6",
  25. "@radix-ui/react-id": "^1.1.0",
  26. "@radix-ui/react-primitive": "^2.0.2"
  27. },
  28. "devDependencies": {
  29. "@types/react": "18.0.15"
  30. },
  31. "sideEffects": false,
  32. "repository": {
  33. "type": "git",
  34. "url": "git+https://github.com/pacocoursey/cmdk.git",
  35. "directory": "cmdk"
  36. },
  37. "bugs": {
  38. "url": "https://github.com/pacocoursey/cmdk/issues"
  39. },
  40. "homepage": "https://github.com/pacocoursey/cmdk#readme",
  41. "author": {
  42. "name": "Paco",
  43. "url": "https://github.com/pacocoursey"
  44. },
  45. "scripts": {
  46. "build": "tsup src",
  47. "dev": "tsup src --watch"
  48. }
  49. }