{
  "name": "ralph-starter",
  "version": "0.5.2",
  "description": "Ralph Wiggum made easy. One command to run autonomous AI coding loops with auto-commit, PRs, and Docker sandbox.",
  "main": "dist/index.js",
  "bin": {
    "ralph-starter": "dist/cli.js"
  },
  "type": "module",
  "keywords": [
    "ralph-wiggum",
    "claude-code",
    "ai",
    "autonomous",
    "coding",
    "loop",
    "orchestrator",
    "cursor",
    "codex",
    "opencode",
    "cli"
  ],
  "author": "Ruben Marcus <ruben@rubenmarcus.dev>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/multivmlabs/ralph-starter"
  },
  "homepage": "https://github.com/multivmlabs/ralph-starter#readme",
  "engines": {
    "node": ">=18.0.0"
  },
  "files": [
    "dist",
    "!dist/**/*.js.map",
    "!dist/**/*.d.ts.map",
    "templates",
    ".claude-plugin",
    "skills",
    "README.md"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@anthropic-ai/sdk": "^0.78.0",
    "@modelcontextprotocol/sdk": "^1.0.0",
    "@opencode-ai/sdk": "^1.2.25",
    "chalk": "^5.3.0",
    "chalk-animation": "^2.0.3",
    "commander": "^14.0.2",
    "execa": "^9.5.2",
    "gradient-string": "^3.0.0",
    "inquirer": "^13.2.2",
    "ora": "^9.1.0",
    "pdf-parse": "^2.4.5",
    "pixelmatch": "^7.1.0",
    "pngjs": "^7.0.0",
    "sharp": "^0.34.5",
    "simple-git": "^3.27.0",
    "yaml": "^2.7.0",
    "zod": "^4.3.6"
  },
  "optionalDependencies": {
    "@sourcegraph/amp-sdk": "0.1.0-20260408083535-gb6b0a7c"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.3.13",
    "@commitlint/cli": "^20.3.1",
    "@commitlint/config-conventional": "^20.3.1",
    "@types/inquirer": "^9.0.7",
    "@types/node": "^25.1.0",
    "@types/pngjs": "^6.0.5",
    "@vitest/coverage-v8": "^4.0.18",
    "commitizen": "^4.3.1",
    "cz-conventional-changelog": "^3.3.0",
    "esbuild": "^0.28.0",
    "husky": "^9.1.0",
    "lint-staged": "^16.2.7",
    "typescript": "^6.0.2",
    "vitest": "^4.0.18"
  },
  "lint-staged": {
    "src/**/*.ts": [
      "biome check --write --no-errors-on-unmatched"
    ]
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "scripts": {
    "preinstall": "npx only-allow pnpm",
    "commit": "cz",
    "build": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\" && tsc",
    "dev": "tsc --watch",
    "start": "node dist/cli.js",
    "test": "vitest",
    "test:run": "vitest run",
    "test:coverage": "vitest run --coverage",
    "lint": "biome lint src",
    "lint:fix": "biome lint --write src",
    "format": "biome format --write src",
    "format:check": "biome format src",
    "check": "biome check src",
    "check:fix": "biome check --write src",
    "typecheck": "tsc --noEmit",
    "release": "pnpm version patch && git push origin main --tags && pnpm publish",
    "release:minor": "pnpm version minor && git push origin main --tags && pnpm publish",
    "release:major": "pnpm version major && git push origin main --tags && pnpm publish",
    "docs:dev": "pnpm --dir docs run start",
    "docs:build": "pnpm --dir docs run build",
    "docs:serve": "pnpm --dir docs run serve"
  }
}