-
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.11 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.11 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": "effect-claude-agent-sdk",
"version": "0.5.0",
"description": "Effect-native bindings for the Claude Agent SDK - build type-safe AI agents with Effect",
"license": "MIT",
"keywords": [
"effect",
"claude",
"anthropic",
"ai",
"agent",
"mcp",
"typescript",
"bun"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mepuka/effect-claude-agent-sdk.git"
},
"homepage": "https://github.com/mepuka/effect-claude-agent-sdk#readme",
"bugs": {
"url": "https://github.com/mepuka/effect-claude-agent-sdk/issues"
},
"author": "Mepuka Kessy",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"prepare": "effect-language-service patch",
"build": "tsup",
"test": "bun test",
"typecheck": "tsc --noEmit && tsc -p cloudflare/tsconfig.json",
"sync:dev": "cd cloudflare && bunx wrangler dev",
"sync:deploy": "cd cloudflare && bunx wrangler deploy",
"prepublishOnly": "bun run build",
"changeset": "changeset",
"version": "changeset version",
"release": "bun run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@cloudflare/workers-types": "^4.20250515.0",
"@effect/language-service": "^0.70.0",
"@types/bun": "latest",
"effect-solutions": "^0.4.13",
"tsup": "^8.0.0"
},
"peerDependencies": {
"@cloudflare/sandbox": ">=0.7.0",
"bun": ">=1.0.0",
"typescript": "^5"
},
"peerDependenciesMeta": {
"@cloudflare/sandbox": {
"optional": true
}
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "0.2.45",
"@effect/cli": "^0.73.0",
"@effect/experimental": "^0.58.0",
"@effect/platform": "^0.94.1",
"@effect/platform-bun": "^0.87.0",
"@effect/rpc": "^0.73.0",
"@effect/sql-d1": "^0.47.0",
"@effect/sql-sqlite-do": "^0.27.0",
"effect": "^3.19.14",
"zod": "^4.0.0"
}
}