-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.83 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
{
"name": "codemode-workers",
"version": "1.0.0",
"description": "Expose any API to an LLM agent as two sandboxed MCP tools (search + execute) on Cloudflare Workers.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"files": [
"dist"
],
"keywords": [
"mcp",
"model-context-protocol",
"code-mode",
"code-execution",
"cloudflare",
"workers",
"worker-loader",
"openapi",
"agent",
"llm",
"tools",
"sandbox"
],
"author": "An Pham",
"license": "MIT",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit -p tsconfig.json",
"build": "tsc -p tsconfig.build.json",
"check": "npm run typecheck && npm run test",
"eval:tokens": "bun run scripts/eval-tokens.ts",
"prepack": "npm run build",
"prepublishOnly": "npm run typecheck",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"zod": "^4.3.5"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.16.18",
"@cloudflare/workers-types": "^4.20260625.1",
"@devant-net/vitest-reporter": "^0.1.2",
"@modelcontextprotocol/server": "2.0.0-beta.2",
"@vitest/coverage-istanbul": "^4.1.10",
"prettier": "^3.9.5",
"typescript": "^7.0.2",
"vitest": "^4.1.0",
"wrangler": "4.105.0"
},
"engines": {
"node": ">=22"
},
"packageManager": "bun@1.3.14",
"repository": {
"type": "git",
"url": "git+https://github.com/ancs21/codemode-workers.git"
},
"homepage": "https://codemode-workers.pages.dev",
"bugs": {
"url": "https://github.com/ancs21/codemode-workers/issues"
}
}