-
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.07 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.07 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": "@solvedbydev/opencode-observational-memory",
"version": "0.2.1",
"description": "OpenCode plugin implementing Mastra-style observational memory with observer/reflector append-log compaction",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bkono/opencode-observational-memory.git"
},
"bugs": {
"url": "https://github.com/bkono/opencode-observational-memory/issues"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"keywords": [
"opencode",
"plugin",
"memory",
"observational-memory"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"js-tiktoken": "^1.0.21",
"openai": "^4.104.0"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.2.15",
"@opencode-ai/sdk": "^1.2.15",
"@types/node": "^22.13.13",
"typescript": "^5.8.2"
}
}