-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.75 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "opencode-codex-memory",
"version": "0.7.2",
"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"
},
"./server": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
},
"./v2": {
"import": "./dist/src/v2/index.js",
"types": "./dist/src/v2/index.d.ts"
},
"./tui": {
"types": "./dist/src/tui.d.ts",
"import": "./dist/src/tui.js"
},
"./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 && bun scripts/build-tui.ts && 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",
"contract:v2": "bun scripts/check-opencode2-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",
"@opencode/client": "2.0.5",
"diff": "^9.0.0",
"isomorphic-git": "^1.38.6",
"xdg-basedir": "^5.1.0"
},
"devDependencies": {
"@opencode/plugin": "2.0.3",
"zod": "4.1.8",
"@opencode/theme": "2.0.3",
"@opentui/core": "0.5.10",
"@opentui/solid": "0.5.10",
"solid-js": "1.9.15",
"typescript": "^5.5.0",
"@types/bun": "^1.1.0"
},
"peerDependencies": {
"@opencode/client": ">=2.0.3",
"@opencode/plugin": ">=2.0.3",
"@opentui/core": ">=0.5.10",
"@opentui/solid": ">=0.5.10",
"solid-js": ">=1.9.0",
"zod": ">=4"
},
"peerDependenciesMeta": {
"@opencode/client": { "optional": true },
"@opencode/plugin": { "optional": true },
"@opentui/core": { "optional": true },
"@opentui/solid": { "optional": true },
"solid-js": { "optional": true },
"zod": { "optional": true }
},
"engines": {
"bun": ">=1.1.0"
}
}