opencode-metis 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +148 -43
- package/dist/cli.cjs +19 -20
- package/dist/mcp-server.cjs +14 -14
- package/dist/plugin.cjs +4 -4
- package/dist/worker.cjs +153 -56
- package/package.json +5 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-metis",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Persistent memory system for OpenCode sessions",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,7 +27,9 @@
|
|
|
27
27
|
"scripts": {
|
|
28
28
|
"test": "bun test",
|
|
29
29
|
"build": "bun run build.ts",
|
|
30
|
-
"lint": "
|
|
30
|
+
"lint": "biome check --fix src test",
|
|
31
|
+
"lint:check": "biome check src test",
|
|
32
|
+
"format": "biome format --write src test",
|
|
31
33
|
"typecheck": "tsc --noEmit",
|
|
32
34
|
"dev": "bun run --watch src/cli/worker.ts",
|
|
33
35
|
"link": "mkdir -p ~/.config/opencode/plugins && stow --no-folding -d .stow -t ~/.config/opencode/plugins opencode-metis",
|
|
@@ -35,15 +37,12 @@
|
|
|
35
37
|
},
|
|
36
38
|
"dependencies": {
|
|
37
39
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
38
|
-
"onnxruntime-node": "^1.21.0",
|
|
39
|
-
"chromadb": "^1.9.2",
|
|
40
40
|
"zod": "^3.23.8"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
+
"@biomejs/biome": "^2.4.4",
|
|
43
44
|
"@types/bun": "latest",
|
|
44
45
|
"esbuild": "^0.27.2",
|
|
45
|
-
"eslint": "^9.0.0",
|
|
46
|
-
"prettier": "^3.0.0",
|
|
47
46
|
"typescript": "^5.3.0"
|
|
48
47
|
}
|
|
49
48
|
}
|