-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.75 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.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
{
"name": "opencode-elf",
"version": "0.6.0",
"description": "Emergent Learning Framework (ELF) plugin for OpenCode - Learn from past successes and failures with hybrid global/project storage",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepare": "npm run build",
"rules:add": "node scripts/manage-rules.js add",
"rules:list": "node scripts/manage-rules.js list",
"rules:seed": "node scripts/seed-rules.js",
"heuristics:add": "node scripts/manage-heuristics.js add",
"heuristics:list": "node scripts/manage-heuristics.js list",
"heuristics:seed": "node scripts/seed-heuristics.js",
"learnings:view": "node scripts/view-learnings.js",
"metrics:view": "node scripts/view-metrics.js",
"cleanup:preview": "node scripts/cleanup-expired.js preview",
"cleanup:clean": "node scripts/cleanup-expired.js clean",
"test:simulate": "ts-node tests/simulate.ts",
"test:hybrid": "ts-node tests/test-hybrid.ts",
"test:benchmark": "ts-node tests/benchmark.ts",
"test:parity": "ts-node tests/test-parity.ts"
},
"keywords": [
"opencode",
"plugin",
"elf",
"learning",
"memory",
"embeddings"
],
"author": "Mark Hingston",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mark-hingston/opencode-elf"
},
"dependencies": {
"@libsql/client": "^0.14.0",
"@xenova/transformers": "^2.17.2"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.0.147",
"@types/node": "^20.11.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"opencode": {
"type": "plugin",
"hooks": [
"chat.params",
"event"
]
},
"files": [
"dist"
]
}