-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.67 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3.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
{
"name": "oh-my-codex",
"version": "0.11.9",
"description": "Multi-agent orchestration layer for OpenAI Codex CLI",
"type": "module",
"main": "dist/index.js",
"bin": {
"omx": "dist/cli/omx.js"
},
"scripts": {
"build": "node -e \"const fs=require('fs'); fs.rmSync('dist',{recursive:true,force:true});\" && tsc && node -e \"require('fs').chmodSync('dist/cli/omx.js', 0o755)\"",
"build:explore": "cargo build -p omx-explore-harness",
"build:full": "npm run build && npm run build:explore:release && npm run build:sparkshell",
"build:explore:release": "node dist/scripts/build-explore-harness.js",
"check:no-unused": "tsc -p tsconfig.no-unused.json",
"clean:native-package-assets": "node dist/scripts/cleanup-explore-harness.js",
"dev": "tsc --watch",
"lint": "biome lint .",
"prepack": "npm run build && npm run clean:native-package-assets",
"setup": "node dist/cli/omx.js setup",
"doctor": "node dist/cli/omx.js doctor",
"ask:claude": "./src/scripts/ask-claude.sh",
"ask:gemini": "./src/scripts/ask-gemini.sh",
"test:explore": "cargo test -p omx-explore-harness && node --test dist/cli/__tests__/explore.test.js dist/hooks/__tests__/explore-routing.test.js dist/hooks/__tests__/explore-sparkshell-guidance-contract.test.js",
"test:team:cross-rebase-smoke": "npm run build && node --test dist/team/__tests__/cross-rebase-smoke.test.js",
"test:node": "node --test $(find dist -name '*.test.js')",
"test": "npm run build && npm run test:node && node dist/scripts/generate-catalog-docs.js --check",
"coverage:team-critical": "npm run build && c8 --all --src dist/team --src dist/state --include 'dist/team/**/*.js' --include 'dist/state/**/*.js' --exclude '**/__tests__/**' --reporter=text-summary --reporter=lcov --reporter=json-summary --report-dir coverage/team --check-coverage --lines=78 --functions=90 --branches=70 --statements=78 node --test $(find dist/team/__tests__ dist/state/__tests__ -name '*.test.js')",
"coverage:ts:full": "npm run build && c8 --all --src dist --exclude '**/__tests__/**' --exclude 'dist/bin/**' --exclude 'dist/**/*.d.ts' --reporter=text-summary --reporter=lcov --reporter=json-summary --report-dir coverage/ts-full node --test $(find dist -name '*.test.js')",
"test:compat:node": "npm run build && node --test dist/compat/__tests__/*.test.js",
"test:compat:rust": "cargo build && OMX_COMPAT_TARGET=./target/debug/omx npm run test:compat:node",
"build:sparkshell": "node dist/scripts/build-sparkshell.js",
"smoke:packed-install": "node dist/scripts/smoke-packed-install.js",
"test:sparkshell": "node dist/scripts/test-sparkshell.js",
"test:reply-listener:live": "node dist/scripts/test-reply-listener-live.js",
"postpack": "npm run clean:native-package-assets"
},
"engines": {
"node": ">=20"
},
"files": [
"Cargo.toml",
"Cargo.lock",
"dist/",
"crates/",
"agents/",
"skills/",
"prompts/",
"templates/",
"src/scripts/"
],
"keywords": [
"codex",
"openai",
"cli",
"agents",
"orchestration",
"multi-agent"
],
"author": "Yeachan Heo",
"repository": {
"type": "git",
"url": "git+https://github.com/Yeachan-Heo/oh-my-codex.git"
},
"homepage": "https://yeachan-heo.github.io/oh-my-codex",
"bugs": {
"url": "https://github.com/Yeachan-Heo/oh-my-codex/issues"
},
"license": "MIT",
"dependencies": {
"@iarna/toml": "^2.2.5",
"@modelcontextprotocol/sdk": "^1.26.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@types/node": "^25.5.0",
"c8": "^11.0.0",
"typescript": "^5.7.0"
},
"overrides": {
"ajv": ">=8.18.0",
"hono": ">=4.11.10"
}
}