-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.37 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.37 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@dudko.dev/agent",
"version": "0.0.3",
"type": "module",
"description": "Tool-using planning agent over MCP servers, built on the Vercel AI SDK.",
"keywords": [
"agent",
"ai-agent",
"llm-agent",
"llm",
"mcp",
"model-context-protocol",
"vercel-ai-sdk",
"ai-sdk",
"tool-use",
"tool-calling",
"function-calling",
"openai",
"anthropic",
"google",
"gemini",
"claude",
"planner",
"replanner",
"multi-step",
"typescript"
],
"author": {
"name": "Siarhei Dudko",
"email": "siarhei@dudko.dev",
"url": "https://dudko.dev/"
},
"funding": [
{
"type": "individual",
"url": "http://dudko.dev/donate"
},
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/dudko.dev"
},
{
"type": "paypal",
"url": "https://paypal.me/dudkodev"
},
{
"type": "patreon",
"url": "https://patreon.com/dudko_dev"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "github:dudko-dev/agent"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"dd-agent": "./dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"start": "node --experimental-strip-types --disable-warning=ExperimentalWarning src/cli/start.ts --env-file=.env",
"build": "tsup && chmod +x dist/cli.js",
"test": "node --test --experimental-strip-types --disable-warning=ExperimentalWarning tests/*.test.ts",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"prepublishOnly": "npm run typecheck && npm test && npm run build"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.0",
"@ai-sdk/google": "^2.0.70",
"@ai-sdk/openai": "^2.0.0",
"@ai-sdk/openai-compatible": "^1.0.0",
"@modelcontextprotocol/sdk": "^1.0.4",
"@opentelemetry/api": "^1.9.1",
"ai": "^5.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.9.0",
"prettier": "^3.8.3",
"tsup": "^8.5.1",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=22.6.0"
}
}