package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@anthropic-ai/claude-agent-sdk",
  3. "version": "0.2.88",
  4. "main": "sdk.mjs",
  5. "types": "sdk.d.ts",
  6. "exports": {
  7. ".": {
  8. "types": "./sdk.d.ts",
  9. "default": "./sdk.mjs"
  10. },
  11. "./embed": {
  12. "types": "./embed.d.ts",
  13. "default": "./embed.js"
  14. },
  15. "./browser": {
  16. "types": "./browser-sdk.d.ts",
  17. "default": "./browser-sdk.js"
  18. },
  19. "./bridge": {
  20. "types": "./bridge.d.ts",
  21. "default": "./bridge.mjs"
  22. },
  23. "./sdk-tools": {
  24. "types": "./sdk-tools.d.ts"
  25. },
  26. "./sdk-tools.js": {
  27. "types": "./sdk-tools.d.ts"
  28. }
  29. },
  30. "engines": {
  31. "node": ">=18.0.0"
  32. },
  33. "type": "module",
  34. "author": "Anthropic <support@anthropic.com>",
  35. "license": "SEE LICENSE IN README.md",
  36. "description": "SDK for building AI agents with Claude Code's capabilities. Programmatically interact with Claude to build autonomous agents that can understand codebases, edit files, and execute workflows.",
  37. "homepage": "https://github.com/anthropics/claude-agent-sdk-typescript",
  38. "bugs": {
  39. "url": "https://github.com/anthropics/claude-agent-sdk-typescript/issues"
  40. },
  41. "keywords": [
  42. "ai",
  43. "agent",
  44. "sdk",
  45. "claude",
  46. "anthropic",
  47. "automation",
  48. "code-generation"
  49. ],
  50. "dependencies": {
  51. "@anthropic-ai/sdk": "^0.74.0",
  52. "@modelcontextprotocol/sdk": "^1.27.1"
  53. },
  54. "peerDependencies": {
  55. "zod": "^4.0.0"
  56. },
  57. "optionalDependencies": {
  58. "@img/sharp-darwin-arm64": "^0.34.2",
  59. "@img/sharp-darwin-x64": "^0.34.2",
  60. "@img/sharp-linux-arm": "^0.34.2",
  61. "@img/sharp-linux-arm64": "^0.34.2",
  62. "@img/sharp-linux-x64": "^0.34.2",
  63. "@img/sharp-linuxmusl-arm64": "^0.34.2",
  64. "@img/sharp-linuxmusl-x64": "^0.34.2",
  65. "@img/sharp-win32-arm64": "^0.34.2",
  66. "@img/sharp-win32-x64": "^0.34.2"
  67. },
  68. "claudeCodeVersion": "2.1.88"
  69. }