-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.33 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
{
"name": "opencode-mem",
"version": "2.24.3",
"description": "OpenCode plugin that gives coding agents persistent memory using local Turso/libSQL vector search",
"type": "module",
"main": "dist/plugin.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/plugin.js",
"types": "./dist/index.d.ts"
},
"./server": {
"import": "./dist/plugin.js",
"types": "./dist/index.d.ts"
},
"./tags": {
"import": "./dist/services/tags.js",
"types": "./dist/services/tags.d.ts"
}
},
"scripts": {
"build": "rm -rf dist && bunx tsc && bun run web:build",
"web:dev": "cd web && bun run dev",
"web:build": "cd web && bun run build",
"dev": "tsc --watch",
"test": "bun test",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,css,html}\" \"web/src/**/*.{ts,tsx,css,html}\"",
"format:check": "prettier --check \"src/**/*.{ts,css,html}\" \"web/src/**/*.{ts,tsx,css,html}\"",
"prepare": "husky"
},
"keywords": [
"opencode",
"plugin",
"memory",
"vector-database",
"ai",
"coding-agent",
"local",
"standalone"
],
"author": "opencode-mem",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tickernelz/opencode-mem.git"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@huggingface/transformers": "^4.2.0",
"@libsql/client": "^0.17.4",
"@opencode-ai/plugin": "^1.18.15",
"@opencode-ai/sdk": "^1.18.15",
"franc-min": "^6.2.0",
"hono": "^4.12.32",
"iso-639-3": "^3.0.1",
"onnxruntime-node": "1.20.1",
"zod": "^4.4.3"
},
"//": "Pin onnxruntime-node@1.20.1 (direct + override): nested OpenCode installs ignore package overrides (#184); 1.21.0–1.23.2 can SIGILL on macOS process exit (#225); fixed releases still lack darwin/x64 (microsoft/onnxruntime#27961).",
"overrides": {
"onnxruntime-node": "1.20.1"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"prettier": "^3.9.6",
"typescript": "7.0.2"
},
"opencode": {
"type": "plugin",
"hooks": [
"chat.message",
"event"
]
},
"files": [
"dist",
"package.json"
],
"lint-staged": {
"*.{ts,tsx,css,html,json,md}": [
"prettier --write"
]
}
}