-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.54 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.54 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
{
"name": "opencode-websearch-cited",
"version": "1.3.0",
"description": "An OpenCode plugin that provides LLM-grounded web search with citations.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./dist/index.js"
}
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ghoulr/opencode-websearch-cited"
},
"homepage": "https://github.com/ghoulr/opencode-websearch-cited#readme",
"bugs": {
"url": "https://github.com/ghoulr/opencode-websearch-cited/issues"
},
"keywords": [
"opencode",
"websearch",
"citations",
"plugin",
"agent"
],
"files": [
"dist",
"index.d.ts",
"README.md",
"LICENSE"
],
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@opencode-ai/sdk": "1.0.150",
"@types/bun": "latest",
"@typescript/native-preview": "^7.0.0-dev.20260109.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7"
},
"peerDependencies": {
"typescript": "^5"
},
"scripts": {
"prepare": "bunx husky",
"sync:codex-prompt": "bun scripts/sync-codex-prompt.ts",
"check": "biome check --write && tsgo --noEmit",
"test:agent": "AGENT=1 bun test --bail",
"build": "bun build index.ts --outdir dist --target node --format esm --sourcemap --external @opencode-ai/plugin --external @opencode-ai/sdk",
"prepack": "bun run build"
},
"dependencies": {
"@opencode-ai/plugin": "1.0.150"
}
}