-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
38 lines (38 loc) · 980 Bytes
/
deno.json
File metadata and controls
38 lines (38 loc) · 980 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
32
33
34
35
36
37
38
{
"name": "opencode-graphiti",
"description": "OpenCode plugin for persistent memory via Graphiti knowledge graph",
"version": "0.0.0-development",
"license": "MIT",
"tasks": {
"build": "deno run -A dnt.ts",
"check": "deno check src/index.ts",
"dev": "deno run --allow-all src/index.ts",
"lint": "deno lint",
"fmt": "deno fmt"
},
"lint": {
"exclude": ["dist/"],
"rules": {
"exclude": ["no-import-prefix"]
}
},
"fmt": {
"exclude": ["dist/"]
},
"compilerOptions": {
"strict": true,
"lib": ["deno.ns", "dom", "esnext"]
},
"nodeModulesDir": "auto",
"imports": {
"@modelcontextprotocol/sdk": "npm:@modelcontextprotocol/sdk@^1.25.2",
"@opencode-ai/plugin": "npm:@opencode-ai/plugin@1.2.26",
"@opencode-ai/sdk": "npm:@opencode-ai/sdk@1.2.26",
"cosmiconfig": "npm:cosmiconfig@9.0.0",
"ioredis": "npm:ioredis@^5.7.0",
"zod": "npm:zod@4.3.6"
},
"exports": {
".": "./mod.ts"
}
}