-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 827 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 827 Bytes
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
{
"name": "context-kernel",
"version": "0.1.0",
"private": true,
"description": "A personal, self-hostable context memory for LLMs, served as a remote MCP server on Cloudflare Workers.",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest run",
"build": "tsx scripts/generate-artifacts.ts",
"dev": "wrangler dev",
"promote": "tsx scripts/promote.ts"
},
"dependencies": {
"@cloudflare/workers-oauth-provider": "^0.8.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"agents": "^0.17.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^5.20260708.1",
"@types/node": "^26.1.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^4.1.10",
"wrangler": "^4.110.0"
}
}