-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.43 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.43 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
{
"name": "@opencode-manager/memory",
"version": "0.0.29",
"type": "module",
"oc-plugin": [
"server",
"tui"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./server": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./tui": {
"import": "./dist/tui.js",
"types": "./dist/tui.d.ts"
}
},
"files": [
"dist",
"config.jsonc",
"scripts",
"README.md"
],
"bin": {
"ocm-mem": "./dist/cli/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/chriswritescode-dev/opencode-memory.git"
},
"author": "Chris Scott",
"description": "AI-powered memory management plugin for OpenCode - semantic search and persistent knowledge storage",
"keywords": [
"opencode",
"memory",
"semantic-search",
"vector-embeddings",
"ai-agent",
"plugin"
],
"license": "MIT",
"homepage": "https://github.com/chriswritescode-dev/opencode-memory",
"dependencies": {
"@huggingface/transformers": "^3.8.1",
"@opencode-ai/plugin": "^1.3.5",
"@opencode-ai/sdk": "^1.2.26",
"sqlite-vec": "0.1.7-alpha.2"
},
"peerDependencies": {
"@opentui/core": ">=0.1.92",
"@opentui/solid": ">=0.1.92"
},
"peerDependenciesMeta": {
"@opentui/core": {
"optional": true
},
"@opentui/solid": {
"optional": true
}
},
"optionalDependencies": {
"sqlite-vec-darwin-arm64": "0.1.7-alpha.2",
"sqlite-vec-darwin-x64": "0.1.7-alpha.2",
"sqlite-vec-linux-arm64": "0.1.7-alpha.2",
"sqlite-vec-linux-x64": "0.1.7-alpha.2",
"sqlite-vec-windows-x64": "0.1.7-alpha.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@opentui/core": "0.1.92",
"@opentui/solid": "0.1.92",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"bun-types": "latest",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-solid": "^0.14.5",
"prettier": "^3.8.1",
"solid-js": "^1.9.12",
"typescript": "^5.7.3",
"typescript-eslint": "^8.58.0"
},
"scripts": {
"build": "bun scripts/build.ts",
"lint": "eslint .",
"postinstall": "node scripts/download-models.js",
"prepublishOnly": "pnpm build",
"test": "bun test",
"typecheck": "tsc --noEmit",
"cli": "bun src/cli/index.ts"
}
}