-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.93 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.93 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@transportrefer/opencode-memory-plugin",
"version": "0.1.0",
"description": "Lightweight Markdown memory for OpenCode agents, with repo-scoped recall and read-only Codex memory/session search.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"author": "kab",
"homepage": "https://github.com/transportrefer/opencode-memory-plugin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/transportrefer/opencode-memory-plugin.git"
},
"bugs": {
"url": "https://github.com/transportrefer/opencode-memory-plugin/issues"
},
"keywords": [
"opencode",
"opencode-ai",
"opencode-plugin",
"opencode-memory",
"opencode-memory-plugin",
"memory",
"agent-memory",
"llm-memory",
"ai-memory",
"repo-memory",
"plain-text-memory",
"markdown",
"coding-agent",
"agent-tools",
"codex-memory",
"codex-sessions",
"codex-transcripts",
"codex-session-search",
"codex-history",
"codex"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"opencode-memory-plugin": "dist/cli.js"
},
"files": [
"dist/cli.d.ts",
"dist/cli.js",
"dist/cli.js.map",
"dist/core.d.ts",
"dist/core.js",
"dist/core.js.map",
"dist/index.d.ts",
"dist/index.js",
"dist/index.js.map",
"assets",
"commands",
"templates",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "npm run build && node --test \"dist/**/*.test.js\"",
"check": "npm run test",
"prepack": "npm run build",
"install:local": "node scripts/install-local.mjs"
},
"dependencies": {
"@opencode-ai/plugin": "^1.4.9"
},
"devDependencies": {
"@types/node": "^22.13.9",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=22"
}
}