-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 953 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 953 Bytes
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
{
"name": "opencode-qdrant",
"version": "0.1.0",
"description": "Qdrant-based semantic codebase indexing plugin for OpenCode",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./server": {
"import": "./dist/server.js"
},
"./tui": {
"import": "./dist/tui.js"
}
},
"files": [
"dist",
"worker"
],
"engines": {
"opencode": ">=1.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@opencode-ai/plugin": "^1.4.3",
"@opentui/core": "^0.1.97",
"@opentui/solid": "^0.1.97",
"@qdrant/js-client-rest": "^1.15.1",
"@xenova/transformers": "^2.17.2",
"ignore": "^7.0.5",
"minimatch": "^10.0.3",
"solid-js": "^1.9.11",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/node": "^22.15.3",
"typescript": "^5.8.3"
}
}