-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.18 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
{
"name": "continuum-memory-mvp",
"version": "0.1.1",
"license": "MIT",
"private": true,
"type": "module",
"bin": {
"continuum": "bin/continuum"
},
"types": "src/sdk.d.ts",
"exports": {
".": {
"types": "./src/sdk.d.ts",
"default": "./src/sdk/index.ts"
}
},
"scripts": {
"continuum": "bun run bin/continuum",
"debug:opencode-summary": "bun run scripts/debug-opencode-summary.ts",
"probe:summary-endpoint": "bun run scripts/probe-summary-endpoint.ts",
"install:global": "bun link",
"setup": "bun install && bun run install:global",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"validate": "bun run typecheck && bun run scripts/run-tests-for-validate.ts && bun run verify:goal",
"verify:goal": "bun run scripts/verify-goal-invariants.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"commander": "^14.0.3",
"drizzle-orm": "^0.44.4",
"effect": "^3.21.4",
"yaml": "^2.8.1",
"zod": "^3.25.0"
},
"devDependencies": {
"better-sqlite3": "^12.4.1",
"bun-types": "^1.3.8",
"drizzle-kit": "^0.31.4",
"prettier": "^3.8.1",
"typescript": "^5.8.2"
}
}