-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.24 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
{
"name": "opencode-selfsearch",
"version": "0.1.0",
"description": "Self-hosted web search for opencode, backed by SearXNG plus a local YaCy index. No API keys, no third-party search providers.",
"keywords": [
"opencode",
"opencode-plugin",
"searxng",
"yacy",
"websearch",
"self-hosted",
"privacy"
],
"license": "MIT",
"author": "gnubyte",
"repository": {
"type": "git",
"url": "git+https://github.com/gnubyte/opencode-selfsearch.git"
},
"homepage": "https://github.com/gnubyte/opencode-selfsearch#readme",
"bugs": {
"url": "https://github.com/gnubyte/opencode-selfsearch/issues"
},
"type": "module",
"main": "./src/server.ts",
"exports": {
".": "./src/server.ts",
"./server": "./src/server.ts"
},
"files": [
"src",
"searxng",
"scripts",
"README.md",
"LICENSE"
],
"engines": {
"opencode": ">=1.18.0"
},
"dependencies": {
"@opencode-ai/plugin": "^1.18.15"
},
"scripts": {
"smoke": "node test/smoke.mjs",
"crawl": "node scripts/crawl.mjs",
"up": "docker compose -f searxng/docker-compose.yml up -d",
"down": "docker compose -f searxng/docker-compose.yml down",
"logs": "docker compose -f searxng/docker-compose.yml logs -f"
}
}