{
  "name": "oh-my-renesas",
  "version": "0.1.5",
  "repository": "https://github.com/gtg7784/oh-my-renesas",
  "description": "OpenCode plugin for Renesas MCU development",
  "main": "dist/index.js",
  "bin": {
    "oh-my-renesas": "dist/cli.js"
  },
  "types": "dist/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "bun build src/index.ts --outdir dist --target bun --format esm",
    "test": "bun test",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist",
    "build:cli": "bun build src/cli.ts --outfile dist/cli.js --target node && chmod +x dist/cli.js",
    "postbuild:cli": "node -e \"const fs=require('fs');const f='dist/cli.js';const c=fs.readFileSync(f,'utf8');if(!c.startsWith('#!')){fs.writeFileSync(f,'#!/usr/bin/env node\\n'+c)}\"",
    "build:types": "tsc --emitDeclarationOnly --noEmit false",
    "prepublishOnly": "bun run clean && bun run build && bun run build:cli && bun run build:types"
  },
  "dependencies": {
    "@opencode-ai/plugin": "^1.1.19",
    "@opencode-ai/sdk": "^1.1.19",
    "zod": "^4.1.8"
  },
  "devDependencies": {
    "bun-types": "^1.3.11",
    "typescript": "^5.7.3",
    "vitest": "^4.1.0"
  }
}
