forked from mem9-ai/mem9
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.02 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
{
"name": "@mem9/opencode",
"version": "0.1.0",
"description": "OpenCode memory plugin — cloud-persistent AI agent memory with hybrid vector + keyword search via mem9",
"type": "module",
"main": "src/index.ts",
"exports": {
".": "./src/index.ts"
},
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"author": "mem9-ai",
"repository": {
"type": "git",
"url": "https://github.com/mem9-ai/mem9.git",
"directory": "opencode-plugin"
},
"homepage": "https://github.com/mem9-ai/mem9/tree/main/opencode-plugin#readme",
"keywords": [
"opencode",
"opencode-plugin",
"memory",
"agent-memory",
"mem9",
"tidb",
"vector-search",
"persistent-memory",
"ai-agent"
],
"files": [
"src",
"README.md"
],
"scripts": {
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run typecheck"
},
"dependencies": {
"@opencode-ai/plugin": "1.2.15"
},
"devDependencies": {
"@types/node": "^25.3.3",
"typescript": "^5.8.0"
}
}