{
  "name": "@guuey/create-agentic-app",
  "version": "0.26.0",
  "description": "Scaffold a guuey agentic app: code-mode agent + custom MCP + ggui + web, local pnpm dev, one-command guuey deploy.",
  "license": "MIT",
  "type": "module",
  "bin": {
    "create-agentic-app": "./dist/cli.js"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "LICENSE",
    "README.md"
  ],
  "engines": {
    "node": ">=20"
  },
  "dependencies": {
    "tar": "^7.5.22"
  },
  "devDependencies": {
    "@types/node": "^24.0.0",
    "tsup": "^8.5.0",
    "typescript": "^5.8.0",
    "vitest": "^4.1.11",
    "@guuey/config": "0.26.0",
    "@guuey/worker": "0.26.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/withguuey/guuey-sdks.git",
    "directory": "packages/create-agentic-app"
  },
  "bugs": {
    "url": "https://github.com/withguuey/guuey-sdks/issues"
  },
  "homepage": "https://guuey.com",
  "scripts": {
    "build": "tsup && node scripts/build-templates.mjs && node scripts/check-templates.mjs",
    "pretest": "node -e \"require('node:fs').existsSync('dist/templates') || (console.error('create-agentic-app: dist/templates is missing - run pnpm build first (turbo orders test after build, guuey#999)'), process.exit(1))\"",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "lint": "eslint src --ext .ts",
    "smoke": "node scripts/scaffold-smoke.mjs",
    "smoke:verdaccio": "node scripts/verdaccio-smoke.mjs"
  }
}