Files

33 lines
902 B
JSON
Raw Permalink Normal View History

2026-05-30 19:09:11 +09:00
{
"name": "@oh-my-opencode/omo-codex",
"version": "0.1.0",
"type": "module",
"private": true,
"description": "Codex harness adapter for oh-my-openagent. Vendored Codex plugin namespace (omo) + TypeScript installer + telemetry.",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./src/index.ts"
},
2026-05-31 05:09:56 +09:00
"./telemetry": {
"types": "./src/telemetry/index.ts",
"import": "./src/telemetry/index.ts"
},
2026-05-30 19:09:11 +09:00
"./marketplace.json": "./marketplace.json"
},
"types": "./index.d.ts",
"scripts": {
"typecheck": "tsgo --noEmit -p tsconfig.json",
"test": "bun test src/**/*.test.ts",
"build:plugin": "bun run --cwd plugin build",
"sync:skills": "node plugin/scripts/sync-skills.mjs"
},
"dependencies": {
"@oh-my-opencode/utils": "workspace:*",
"posthog-node": "^5.34.3"
},
"devDependencies": {
"bun-types": "1.3.14"
}
}