-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.56 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
{
"name": "@composio/claude-agent-sdk",
"version": "0.11.0",
"description": "Composio provider for Claude Agent SDK",
"main": "src/index.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/ComposioHQ/composio.git",
"directory": "ts/packages/providers/claude-agent-sdk"
},
"bugs": {
"url": "https://github.com/ComposioHQ/composio/issues"
},
"homepage": "https://github.com/ComposioHQ/composio/tree/next/ts/packages/providers/claude-agent-sdk#readme",
"publishConfig": {
"access": "public",
"main": "dist/index.mjs",
"types": "dist/index.d.mts"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"files": [
"README.md",
"dist"
],
"scripts": {
"clean": "git clean -xdf node_modules",
"build": "tsdown",
"test": "vitest run"
},
"keywords": [
"composio",
"claude",
"claude-code",
"agent-sdk",
"anthropic",
"mcp"
],
"author": "",
"contributors": [
"Alberto Schiabel <alberto.schiabel@gmail.com> (https://github.com/jkomyno)"
],
"license": "ISC",
"dependencies": {
"zod": "^4.4.3"
},
"peerDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.199",
"@composio/core": ">=0.10.0 <1.0.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.233",
"@modelcontextprotocol/sdk": "catalog:",
"@composio/core": "workspace:*",
"tsdown": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:",
"zod": "^4.4.3"
}
}