-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.21 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@anthropic-ai/claude-agent-sdk",
"version": "0.2.121",
"main": "sdk.mjs",
"types": "sdk.d.ts",
"exports": {
".": {
"types": "./sdk.d.ts",
"default": "./sdk.mjs"
},
"./browser": {
"types": "./browser-sdk.d.ts",
"default": "./browser-sdk.js"
},
"./bridge": {
"types": "./bridge.d.ts",
"default": "./bridge.mjs"
},
"./assistant": {
"types": "./assistant.d.ts",
"default": "./assistant.mjs"
},
"./sdk-tools": {
"types": "./sdk-tools.d.ts"
},
"./sdk-tools.js": {
"types": "./sdk-tools.d.ts"
}
},
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"author": "Anthropic <support@anthropic.com>",
"license": "SEE LICENSE IN README.md",
"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.",
"homepage": "https://github.com/anthropics/claude-agent-sdk-typescript",
"bugs": {
"url": "https://github.com/anthropics/claude-agent-sdk-typescript/issues"
},
"keywords": [
"ai",
"agent",
"sdk",
"claude",
"anthropic",
"automation",
"code-generation"
],
"dependencies": {
"@anthropic-ai/sdk": "^0.81.0",
"@modelcontextprotocol/sdk": "^1.29.0"
},
"peerDependencies": {
"zod": "^4.0.0"
},
"optionalDependencies": {
"@anthropic-ai/claude-agent-sdk-linux-x64": "0.2.121",
"@anthropic-ai/claude-agent-sdk-linux-arm64": "0.2.121",
"@anthropic-ai/claude-agent-sdk-linux-x64-musl": "0.2.121",
"@anthropic-ai/claude-agent-sdk-linux-arm64-musl": "0.2.121",
"@anthropic-ai/claude-agent-sdk-darwin-x64": "0.2.121",
"@anthropic-ai/claude-agent-sdk-darwin-arm64": "0.2.121",
"@anthropic-ai/claude-agent-sdk-win32-x64": "0.2.121",
"@anthropic-ai/claude-agent-sdk-win32-arm64": "0.2.121"
},
"files": [
"sdk.mjs",
"sdk.d.ts",
"sdk-tools.d.ts",
"agentSdkTypes.d.ts",
"bridge.mjs",
"bridge.d.ts",
"assistant.mjs",
"assistant.d.ts",
"browser-sdk.js",
"browser-sdk.d.ts",
"manifest.json",
"manifest.zst.json"
],
"claudeCodeVersion": "2.1.121"
}