-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.36 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
100
101
102
103
104
{
"name": "opencode-mem0",
"version": "2.16.2",
"description": "OpenCode plugin that gives coding agents persistent memory using local vector database",
"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"
}
},
"scripts": {
"build": "node scripts/build.mjs",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:bun": "vitest run",
"test:coverage": "vitest run --coverage",
"format": "prettier --write \"src/**/*.{ts,js,css,html}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,css,html}\"",
"prepare": "husky"
},
"keywords": [
"opencode",
"plugin",
"memory",
"vector-database",
"ai",
"coding-agent",
"local",
"standalone"
],
"author": "ZeR020",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ZeR020/opencode-mem0.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"bun": ">=1.0.0",
"node": ">=20.0.0"
},
"bugs": {
"url": "https://github.com/ZeR020/opencode-mem0/issues"
},
"homepage": "https://github.com/ZeR020/opencode-mem0#readme",
"dependencies": {
"@ai-sdk/anthropic": "^3.0.73",
"@ai-sdk/openai": "^3.0.55",
"@huggingface/transformers": "^4.2.0",
"@opencode-ai/plugin": "^1.14.31",
"@opencode-ai/sdk": "^1.14.31",
"ai": "^6.0.172",
"better-sqlite3": "^12.1.0",
"franc-min": "^6.2.0",
"iso-639-3": "^3.0.1",
"usearch": "^2.25.1",
"zod": "^4.4.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/bun": "^1.3.13",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"typescript": "^5.9.3",
"@vitest/coverage-v8": "^3.2.4",
"vitest": "^3.2.4"
},
"opencode": {
"type": "plugin",
"hooks": [
"chat.message",
"event"
]
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE",
"docs/CHANGELOG.md"
],
"overrides": {
"protobufjs": "^7.5.8",
"ws": ">=8.20.1",
"yaml": "^2.8.3",
"uuid": "^14.0.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,css,html,json,md}": [
"prettier --write"
]
}
}