-
Notifications
You must be signed in to change notification settings - Fork 525
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 1.95 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 1.95 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
{
"name": "@cloudflare/codemode",
"version": "0.3.4",
"description": "Code Mode: use LLMs to generate executable code that performs tool calls",
"repository": {
"directory": "packages/codemode",
"type": "git",
"url": "git+https://github.com/cloudflare/agents.git"
},
"bugs": {
"url": "https://github.com/cloudflare/agents/issues"
},
"dependencies": {
"@types/json-schema": "^7.0.15",
"acorn": "^8.16.0"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"@playwright/test": "^1.59.1",
"@tanstack/ai": "^0.14.0",
"ai": "^6.0.168",
"vitest": "4.1.5",
"zod": "^4.3.6"
},
"peerDependencies": {
"@modelcontextprotocol/sdk": "^1.25.0",
"@tanstack/ai": ">=0.8.0 <1.0.0",
"ai": "^6.0.0",
"zod": "^4.0.0"
},
"peerDependenciesMeta": {
"@modelcontextprotocol/sdk": {
"optional": true
},
"@tanstack/ai": {
"optional": true
},
"ai": {
"optional": true
},
"zod": {
"optional": true
}
},
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./ai": {
"types": "./dist/ai.d.ts",
"import": "./dist/ai.js",
"require": "./dist/ai.js"
},
"./mcp": {
"types": "./dist/mcp.d.ts",
"import": "./dist/mcp.js",
"require": "./dist/mcp.js"
},
"./tanstack-ai": {
"types": "./dist/tanstack-ai.d.ts",
"import": "./dist/tanstack-ai.js",
"require": "./dist/tanstack-ai.js"
}
},
"scripts": {
"build": "tsx ./scripts/build.ts",
"test": "vitest run",
"test:e2e": "npx playwright test --config e2e/playwright.config.ts",
"test:watch": "vitest"
},
"keywords": [
"cloudflare",
"agents",
"ai",
"llm",
"codemode"
],
"author": "Cloudflare Inc.",
"license": "MIT",
"type": "module",
"files": [
"dist",
"README.md"
]
}