forked from code-yeongyu/oh-my-openagent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
146 lines (146 loc) · 5.67 KB
/
package.json
File metadata and controls
146 lines (146 loc) · 5.67 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "oh-my-opencode",
"version": "4.4.0",
"description": "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"workspaces": [
"packages/rules-engine",
"packages/ast-grep-core",
"packages/ast-grep-mcp",
"packages/utils",
"packages/model-core",
"packages/prompts-core",
"packages/comment-checker-core",
"packages/hashline-core",
"packages/boulder-state",
"packages/agents-md-core"
],
"bin": {
"oh-my-opencode": "bin/oh-my-opencode.js",
"oh-my-openagent": "bin/oh-my-opencode.js"
},
"files": [
"dist",
"bin",
"postinstall.mjs",
".opencode/command",
".opencode/skills",
".agents/command",
".agents/skills",
"packages/lsp-tools-mcp/dist",
"packages/ast-grep-mcp/dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./server": "./dist/index.js",
"./schema.json": "./dist/oh-my-opencode.schema.json"
},
"scripts": {
"build": "bun run build:ast-grep-mcp && bun build src/index.ts --outdir dist --target bun --format esm --external @ast-grep/napi --external zod && bun run build:node-require-shim && tsc --emitDeclarationOnly && bun build src/cli/index.ts --outdir dist/cli --target bun --format esm --external @ast-grep/napi && bun run build:schema",
"build:lsp-tools-mcp": "npm --prefix packages/lsp-tools-mcp ci && npm --prefix packages/lsp-tools-mcp run build",
"build:node-require-shim": "bun run script/patch-node-require-shim.ts",
"build:all": "bun run build && bun run build:binaries",
"build:binaries": "bun run script/build-binaries.ts",
"build:schema": "bun run script/build-schema.ts",
"build:model-capabilities": "bun run script/build-model-capabilities.ts",
"clean": "rm -rf dist",
"prepare": "bun run build",
"postinstall": "node postinstall.mjs",
"prepublishOnly": "bun run clean && bun run build:lsp-tools-mcp && bun run build",
"test:model-capabilities": "bun test src/shared/model-capability-aliases.test.ts src/shared/model-capability-guardrails.test.ts src/shared/model-capabilities.test.ts src/cli/doctor/checks/model-resolution.test.ts --bail",
"typecheck": "tsgo --noEmit && bun run typecheck:packages",
"typecheck:packages": "tsgo --noEmit -p packages/rules-engine/tsconfig.json && tsgo --noEmit -p packages/ast-grep-core/tsconfig.json && tsgo --noEmit -p packages/ast-grep-mcp/tsconfig.json && tsgo --noEmit -p packages/utils/tsconfig.json && tsgo --noEmit -p packages/model-core/tsconfig.json && tsgo --noEmit -p packages/prompts-core/tsconfig.json && tsgo --noEmit -p packages/comment-checker-core/tsconfig.json && tsgo --noEmit -p packages/hashline-core/tsconfig.json && tsgo --noEmit -p packages/boulder-state/tsconfig.json && tsgo --noEmit -p packages/agents-md-core/tsconfig.json",
"typecheck:script": "tsgo --noEmit -p script/tsconfig.json",
"test": "bun test",
"build:ast-grep-mcp": "bun run --cwd packages/ast-grep-mcp build"
},
"keywords": [
"opencode",
"plugin",
"oracle",
"librarian",
"agents",
"ai",
"llm"
],
"author": "YeonGyu-Kim",
"license": "SUL-1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/code-yeongyu/oh-my-openagent.git"
},
"bugs": {
"url": "https://github.com/code-yeongyu/oh-my-openagent/issues"
},
"homepage": "https://github.com/code-yeongyu/oh-my-openagent#readme",
"dependencies": {
"@ast-grep/cli": "^0.42.2",
"@ast-grep/napi": "^0.42.2",
"@clack/prompts": "^1.4.0",
"@code-yeongyu/comment-checker": "^0.8.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@opencode-ai/plugin": "^1.15.4",
"@opencode-ai/sdk": "^1.15.4",
"commander": "^14.0.3",
"detect-libc": "^2.1.2",
"diff": "^9.0.0",
"effect": "4.0.0-beta.65",
"js-yaml": "^4.1.1",
"jsonc-parser": "^3.3.1",
"picocolors": "^1.1.1",
"picomatch": "^4.0.4",
"posthog-node": "^5.34.3",
"vscode-jsonrpc": "^8.2.1"
},
"devDependencies": {
"@oh-my-opencode/ast-grep-core": "workspace:*",
"@oh-my-opencode/ast-grep-mcp": "workspace:*",
"@oh-my-opencode/agents-md-core": "workspace:*",
"@oh-my-opencode/boulder-state": "workspace:*",
"@oh-my-opencode/comment-checker-core": "workspace:*",
"@oh-my-opencode/hashline-core": "workspace:*",
"@oh-my-opencode/model-core": "workspace:*",
"@oh-my-opencode/prompts-core": "workspace:*",
"@oh-my-opencode/rules-engine": "workspace:*",
"@oh-my-opencode/utils": "workspace:*",
"@typescript/native-preview": "7.0.0-dev.20260518.1",
"@types/js-yaml": "^4.0.9",
"@types/picomatch": "^4.0.3",
"bun-types": "1.3.14",
"typescript": "^6.0.3",
"zod": "^4.4.3"
},
"optionalDependencies": {
"oh-my-opencode-darwin-arm64": "4.4.0",
"oh-my-opencode-darwin-x64": "4.4.0",
"oh-my-opencode-darwin-x64-baseline": "4.4.0",
"oh-my-opencode-linux-arm64": "4.4.0",
"oh-my-opencode-linux-arm64-musl": "4.4.0",
"oh-my-opencode-linux-x64": "4.4.0",
"oh-my-opencode-linux-x64-baseline": "4.4.0",
"oh-my-opencode-linux-x64-musl": "4.4.0",
"oh-my-opencode-linux-x64-musl-baseline": "4.4.0",
"oh-my-opencode-windows-x64": "4.4.0",
"oh-my-opencode-windows-x64-baseline": "4.4.0"
},
"overrides": {
"hono": "^4.12.18",
"@hono/node-server": "^1.19.13",
"express-rate-limit": "^8.5.1",
"fast-uri": "^3.1.2",
"path-to-regexp": "^8.4.2"
},
"trustedDependencies": [
"@ast-grep/cli",
"@ast-grep/napi",
"@code-yeongyu/comment-checker"
],
"peerDependencies": {
"zod": "^4.0.0"
}
}