-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.41 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.41 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
{
"name": "opencode-search",
"version": "0.0.8",
"description": "OpenCode plugin that provides web search tools using DuckDuckGo, Wikipedia, Bluesky, Standard.site, and MDN Web Docs.",
"keywords": [
"opencode",
"opencode-plugin",
"plugin",
"search",
"web-search",
"wikipedia",
"duckduckgo",
"bluesky",
"atproto",
"standard-site"
],
"homepage": "https://github.com/whaaaley/opencode-search#readme",
"bugs": {
"url": "https://github.com/whaaaley/opencode-search/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whaaaley/opencode-search.git"
},
"license": "MIT",
"author": "Dustin Dowell",
"type": "module",
"exports": {
".": {
"import": "./dist/search.js",
"types": "./dist/search.d.ts"
}
},
"main": "./dist/search.js",
"types": "./dist/search.d.ts",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf dist",
"fmt": "bun run dprint fmt",
"prepublishOnly": "npm run build",
"test": "bun test"
},
"dependencies": {
"@mozilla/readability": "0.5.0",
"jsdom": "26.1.0"
},
"devDependencies": {
"@opencode-ai/plugin": "1.1.12",
"@types/bun": "1.3.9",
"@types/jsdom": "27.0.0",
"dprint": "latest",
"typescript": "5.9.3"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=0.13.7"
}
}