{
  "name": "supercodex",
  "version": "2.0.0",
  "description": "Workflow and prompt framework for Codex CLI with aliases, modes, MCP integration, and safe config automation.",
  "bin": {
    "supercodex": "dist/cli.js"
  },
  "main": "dist/cli.js",
  "types": "dist/cli.d.ts",
  "files": [
    "dist",
    "content"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "test": "vitest run",
    "test:golden": "vitest run tests/golden-outputs.test.ts",
    "test:golden:update": "tsx scripts/update-golden.ts",
    "dev": "tsx src/cli.ts",
    "prepublishOnly": "npm run build && npm test && npm run verify:consistency",
    "verify:consistency": "node dist/cli.js verify --strict",
    "lock:refresh": "tsx src/cli.ts lock refresh --json",
    "metadata:sync": "tsx scripts/sync-metadata.ts --write",
    "metadata:check": "tsx scripts/sync-metadata.ts --check",
    "bench": "tsx benchmarks/harness.ts --config benchmarks/run-config.json",
    "bench:smoke": "tsx benchmarks/harness.ts --config benchmarks/run-config.smoke.json",
    "bench:score": "tsx benchmarks/scorecard.ts",
    "bench:diff": "tsx benchmarks/scorecard-diff.ts",
    "bench:smoke:score": "tsx benchmarks/scorecard.ts --results-dir benchmarks/results",
    "bench:smoke:diff": "tsx benchmarks/scorecard-diff.ts --results-dir benchmarks/results",
    "bench:check": "tsx benchmarks/scorecard.ts --enforce-thresholds",
    "bench:smoke:check": "tsx benchmarks/scorecard.ts --enforce-thresholds --thresholds benchmarks/thresholds.smoke.json",
    "bench:tune-thresholds": "tsx benchmarks/tune-thresholds.ts",
    "bench:tune-thresholds:last5": "tsx benchmarks/tune-thresholds.ts --last=5",
    "bench:tune-thresholds:last5:write": "tsx benchmarks/tune-thresholds.ts --last=5 --write",
    "growth:funnel": "node dist/cli.js growth funnel --json",
    "growth:dashboard": "node dist/cli.js growth dashboard --output docs/GROWTH_DASHBOARD.md --json",
    "release:notes": "tsx scripts/generate-release-notes.ts",
    "release:notes:check": "tsx scripts/generate-release-notes.ts --check",
    "release:publish:verify": "tsx scripts/verify-npm-publish.ts"
  },
  "keywords": [
    "codex",
    "codex-cli",
    "ai",
    "ai-cli",
    "workflow",
    "prompt-framework",
    "developer-productivity",
    "mcp",
    "model-context-protocol",
    "agent",
    "superclaude",
    "automation",
    "cli"
  ],
  "author": "ErenAri",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ErenAri/super-codex.git"
  },
  "bugs": {
    "url": "https://github.com/ErenAri/super-codex/issues"
  },
  "homepage": "https://github.com/ErenAri/super-codex#readme",
  "publishConfig": {
    "access": "public"
  },
  "type": "commonjs",
  "engines": {
    "node": ">=18"
  },
  "dependencies": {
    "@iarna/toml": "^2.2.5",
    "commander": "^14.0.3"
  },
  "devDependencies": {
    "@types/node": "^25.3.2",
    "tsx": "^4.20.5",
    "typescript": "^5.9.3",
    "vitest": "^4.0.18"
  }
}
