-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.05 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.05 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
{
"name": "tool-scripting",
"version": "0.3.0",
"description": "Code mode tool call scripting for Vercel AI SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "node test/basic.js",
"test:int": "node test/integration.js"
},
"keywords": [
"ai",
"llm",
"tools",
"code-mode",
"vercel-ai-sdk"
],
"author": "will123195",
"license": "MIT",
"dependencies": {
"isolated-vm": "^5.0.1"
},
"peerDependencies": {
"ai": "^5.0.56",
"zod": "^4.0.0"
},
"devDependencies": {
"@ai-sdk/openai": "^2.0.38",
"@types/node": "^18.0.0",
"dotenv": "^17.2.2",
"typescript": "^5.0.0",
"zod": "^4.1.11"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/will123195/tool-scripting.git"
},
"homepage": "https://github.com/will123195/tool-scripting#readme",
"bugs": {
"url": "https://github.com/will123195/tool-scripting/issues"
}
}