Files
oh-my-opencode/packages/omo-claude/plugin/components/rules/package.json
T
YeonGyu-Kim 3272037c3e feat(omo-claude): vendor rules component with CC patches
model/turn_id optional (SessionStart keeps model), CLAUDE_PLUGIN_ROOT/DATA env
fallback, .claude-plugin manifest path, PostToolUse matcher Write|Edit|MultiEdit,
OMO_CLAUDE_RULES_* env aliases, bundled-rules vendored. Injects w/o turn_id (QA).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-05-29 13:40:11 +09:00

63 lines
1.4 KiB
JSON

{
"name": "@code-yeongyu/codex-rules",
"version": "0.1.0",
"description": "Codex plugin that injects project rule files into model context through lifecycle hooks.",
"type": "module",
"packageManager": "npm@11.12.1",
"license": "MIT",
"homepage": "https://github.com/code-yeongyu/codex-rules",
"repository": {
"type": "git",
"url": "git+https://github.com/code-yeongyu/codex-rules.git"
},
"bugs": {
"url": "https://github.com/code-yeongyu/codex-rules/issues"
},
"keywords": [
"codex",
"codex-plugin",
"rules",
"hooks",
"agents-md",
"context-injection",
"typescript"
],
"bin": {
"codex-rules": "./dist/cli.js"
},
"files": [
"bundled-rules",
"dist",
"hooks",
"skills",
".codex-plugin",
"LICENSE",
"NOTICE",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "vitest --run",
"test:watch": "vitest",
"bench": "npm run build --silent && node scripts/bench-codex-rules.mjs",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"check": "tsc --noEmit && biome check . && npm run build"
},
"dependencies": {
"picomatch": "^4.0.3"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/node": "^25.7.0",
"@types/picomatch": "^4.0.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=20.0.0"
}
}