-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.6 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.6 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
{
"name": "@mathew-cf/opencode-memory",
"version": "1.0.0",
"description": "Persistent cross-session memory for OpenCode — a hybrid keyword + semantic search layer over a local markdown knowledge base, plus session history tools and guardrails that nudge agents to use them.",
"author": "mat",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/mathew-cf/opencode-memory"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./cli": {
"types": "./dist/cli.d.ts",
"default": "./dist/cli.js"
},
"./package.json": "./package.json"
},
"bin": {
"opencode-memory": "dist/cli.js"
},
"files": [
"dist",
"skills"
],
"scripts": {
"build": "bun build src/index.ts src/cli.ts --outdir dist --target node && tsc --emitDeclarationOnly",
"test": "bun test",
"prepublishOnly": "bun run build",
"typecheck": "tsc --noEmit",
"sync-version": "bun scripts/sync-version.ts",
"version": "bun run sync-version && git add README.md"
},
"keywords": [
"opencode",
"opencode-plugin",
"memory",
"rag",
"semantic-search",
"persistence"
],
"dependencies": {
"@mathew-cf/rag-cli": "^0.4.0",
"@vscode/ripgrep": "^1.17.1",
"zod": "^3.25.0"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.1.49",
"@types/bun": "^1.3.12",
"@types/node": "^22.0.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.0.0"
}
}