{
  "name": "koti",
  "version": "3.0.1",
  "description": "CLI tool to scaffold Bun API projects with a choice of Express or Elysia framework and MongoDB. Pick your framework at create time (--framework express|elysia) with full feature parity: JWT auth, RBAC, audit, documents/S3, tinyURL, Swagger, email. Review generated code before production use.",
  "main": "dist/cli.js",
  "bin": {
    "koti": "./dist/cli.js",
    "koti-mcp": "./dist/mcp-server.js"
  },
  "scripts": {
    "build": "esbuild src/cli.ts --bundle --platform=node --target=node16 --outfile=dist/cli.js --format=cjs --external:readline && esbuild src/mcp-server.ts --bundle --platform=node --target=node16 --outfile=dist/mcp-server.js --format=cjs --external:readline",
    "build:tsc": "tsc",
    "build:mcp": "esbuild src/mcp-server.ts --bundle --platform=node --target=node16 --outfile=dist/mcp-server.js --format=cjs --external:readline",
    "dev": "ts-node src/cli.ts",
    "dev:mcp": "ts-node src/mcp-server.ts",
    "start": "node dist/cli.js",
    "start:mcp": "node dist/mcp-server.js",
    "pack:mcpb": "node scripts/build-mcpb.js",
    "update-version": "node scripts/update-version.js",
    "prepare": "npm run build",
    "prepublishOnly": "npm run update-version && npm run build",
    "test": "vitest run"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.12.0",
    "commander": "^11.1.0",
    "fs-extra": "^11.2.0",
    "zod": "^3.23.0"
  },
  "devDependencies": {
    "@types/fs-extra": "^11.0.4",
    "@types/node": "^20.10.0",
    "esbuild": "^0.27.4",
    "ts-node": "^10.9.1",
    "typescript": "^5.3.2",
    "vitest": "^4.1.1"
  },
  "keywords": [
    "bun",
    "express",
    "elysia",
    "mongodb",
    "api",
    "cli",
    "generator",
    "scaffold",
    "boilerplate",
    "mcp",
    "model-context-protocol",
    "ai-tools",
    "claude",
    "typescript",
    "nodejs"
  ],
  "author": {
    "name": "mynenikoteshwarrao",
    "email": "mynenikoteshwarrao@gmail.com"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mynenikoteshwarrao/BunExpressSetup.git"
  },
  "bugs": {
    "url": "https://github.com/mynenikoteshwarrao/BunExpressSetup/issues"
  },
  "homepage": "https://github.com/mynenikoteshwarrao/BunExpressSetup#readme",
  "engines": {
    "node": ">=16.0.0"
  },
  "files": [
    "dist/",
    "templates/",
    "manifest.json",
    "icon.png",
    "version.json",
    "README.md",
    "LICENSE"
  ]
}
