9ecbbd443f
Mirror packages/omo-codex layout for the Claude Code port: package.json (@oh-my-opencode/omo-claude), tsconfig, index.d.ts, src/ + src/telemetry stubs, and the plugin/ tree (.claude-plugin, components, agents, hooks, scripts, skills, test, mcp) with a CC-worded plugin README + placeholder package.json. Plan: .omo/plans/omo-claude-plugin-port.md Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
32 lines
977 B
JSON
32 lines
977 B
JSON
{
|
|
"name": "@oh-my-opencode/omo-claude",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"description": "Claude Code harness adapter for oh-my-openagent. Vendored Claude Code plugin namespace (omo) + TypeScript installer + telemetry.",
|
|
"exports": {
|
|
".": {
|
|
"types": "./index.d.ts",
|
|
"import": "./src/index.ts"
|
|
},
|
|
"./telemetry": "./src/telemetry/index.ts",
|
|
"./marketplace.json": "./marketplace.json"
|
|
},
|
|
"types": "./index.d.ts",
|
|
"scripts": {
|
|
"typecheck": "tsgo --noEmit -p tsconfig.json",
|
|
"test": "bun test src/**/*.test.ts",
|
|
"build": "npm --prefix plugin run build",
|
|
"sync:skills": "node plugin/scripts/sync-skills.mjs",
|
|
"sync:components": "node plugin/scripts/sync-components.mjs",
|
|
"sync:telemetry": "node scripts/sync-telemetry-component.mjs"
|
|
},
|
|
"dependencies": {
|
|
"@oh-my-opencode/utils": "workspace:*",
|
|
"posthog-node": "^5.34.3"
|
|
},
|
|
"devDependencies": {
|
|
"bun-types": "1.3.14"
|
|
}
|
|
}
|