-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.68 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
{
"name": "opencode-codex-memory",
"version": "0.6.3",
"description": "Persistent memory plugin for opencode — ports codex's two-phase memory system (extraction → consolidation → injection → citation feedback)",
"type": "module",
"main": "./dist/src/index.js",
"exports": {
".": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
},
"./tools/*": {
"import": "./dist/tools/*.js",
"types": "./dist/tools/*.d.ts"
}
},
"files": [
"dist",
"opencode.json",
"NOTICE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/moritzfl/opencode-codex-memory.git"
},
"homepage": "https://github.com/moritzfl/opencode-codex-memory#readme",
"bugs": {
"url": "https://github.com/moritzfl/opencode-codex-memory/issues"
},
"scripts": {
"dev": "bun --watch src/index.ts",
"build": "tsc && rm -rf dist/src/templates && cp -R src/templates dist/src/templates && cp opencode.json dist/opencode.json",
"smoke": "bun scripts/smoke.ts",
"contract": "bun scripts/check-opencode-contract.ts",
"live:read": "bun scripts/live-readpath.ts",
"live:e2e": "bun scripts/live-e2e.ts",
"prepack": "npm run build && npm run smoke",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"keywords": [
"opencode",
"memory",
"plugin",
"ai",
"persistent-context",
"codex"
],
"license": "Apache-2.0",
"dependencies": {
"@opencode-ai/plugin": "^1.18.0",
"diff": "^9.0.0",
"isomorphic-git": "^1.38.6",
"xdg-basedir": "^5.1.0"
},
"devDependencies": {
"typescript": "^5.5.0",
"@types/bun": "^1.1.0"
},
"engines": {
"bun": ">=1.1.0"
}
}