toolpack-sdk 2.1.0 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/dist/index.cjs +143 -138
- package/dist/index.d.cts +351 -6
- package/dist/index.d.ts +351 -6
- package/dist/index.js +143 -138
- package/package.json +22 -6
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "toolpack-sdk",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.2.0",
|
|
4
|
+
"description": "TypeScript SDK for production AI agents — 110+ built-in tools across 14 categories, multi-provider support (OpenAI, Anthropic, Gemini, Ollama), workflow engine, and mode system",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20"
|
|
7
7
|
},
|
|
@@ -55,18 +55,22 @@
|
|
|
55
55
|
"publish:npm": "npm run build && npm run test && npm publish --access public"
|
|
56
56
|
},
|
|
57
57
|
"keywords": [
|
|
58
|
+
"ai-agent",
|
|
59
|
+
"production-ai",
|
|
58
60
|
"ai",
|
|
59
61
|
"llm",
|
|
62
|
+
"typescript",
|
|
63
|
+
"sdk",
|
|
60
64
|
"openai",
|
|
61
65
|
"anthropic",
|
|
62
66
|
"claude",
|
|
63
67
|
"gemini",
|
|
64
|
-
"
|
|
65
|
-
"coding-agent",
|
|
68
|
+
"ollama",
|
|
66
69
|
"tools",
|
|
67
70
|
"function-calling",
|
|
68
|
-
"
|
|
69
|
-
"
|
|
71
|
+
"rag",
|
|
72
|
+
"knowledge-base",
|
|
73
|
+
"multi-provider"
|
|
70
74
|
],
|
|
71
75
|
"author": "Sajeer (https://sajeerzeji.com)",
|
|
72
76
|
"license": "Apache-2.0",
|
|
@@ -80,6 +84,7 @@
|
|
|
80
84
|
},
|
|
81
85
|
"devDependencies": {
|
|
82
86
|
"@eslint/js": "^9.39.2",
|
|
87
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
83
88
|
"@types/babel__core": "^7.20.5",
|
|
84
89
|
"@types/babel__traverse": "^7.28.0",
|
|
85
90
|
"@types/better-sqlite3": "^7.6.13",
|
|
@@ -100,6 +105,9 @@
|
|
|
100
105
|
},
|
|
101
106
|
"dependencies": {
|
|
102
107
|
"@anthropic-ai/sdk": "^0.73.0",
|
|
108
|
+
"jose": "^6.2.3",
|
|
109
|
+
"zod": "^3.25.0",
|
|
110
|
+
"zod-to-json-schema": "^3.24.5",
|
|
103
111
|
"@babel/parser": "^7.29.0",
|
|
104
112
|
"@babel/traverse": "^7.29.0",
|
|
105
113
|
"@babel/types": "^7.29.0",
|
|
@@ -118,6 +126,14 @@
|
|
|
118
126
|
"simple-git": "^3.32.3",
|
|
119
127
|
"web-tree-sitter": "^0.22.6"
|
|
120
128
|
},
|
|
129
|
+
"peerDependencies": {
|
|
130
|
+
"@modelcontextprotocol/sdk": "^1.29.0"
|
|
131
|
+
},
|
|
132
|
+
"peerDependenciesMeta": {
|
|
133
|
+
"@modelcontextprotocol/sdk": {
|
|
134
|
+
"optional": true
|
|
135
|
+
}
|
|
136
|
+
},
|
|
121
137
|
"directories": {
|
|
122
138
|
"doc": "docs",
|
|
123
139
|
"test": "tests"
|