{
  "name": "@beatzball/create-litro",
  "version": "0.9.0",
  "description": "Scaffold a new Litro app — fullstack SSR, Markdown blog, or docs site. Pick Lit, FAST Element, or Elena via --adapter; built on web components and the Nitro server.",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/beatzball/litro.git",
    "directory": "packages/create-litro"
  },
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "bin": {
    "create-litro": "./dist/src/index.js"
  },
  "keywords": [
    "create",
    "scaffold",
    "cli",
    "web-components",
    "lit",
    "fast-element",
    "elena",
    "fullstack",
    "ssr",
    "ssg",
    "nitro",
    "starter",
    "template",
    "typescript"
  ],
  "devDependencies": {
    "@types/node": "^22.0.0",
    "typescript": "^5.7.3",
    "vitest": "^2.1.8"
  },
  "scripts": {
    "clean": "node -e \"const fs=require('fs');fs.rmSync('dist',{recursive:true,force:true});fs.rmSync('tsconfig.tsbuildinfo',{force:true});\"",
    "build": "pnpm run clean && tsc -p tsconfig.json && node -e \"require('fs').cpSync('recipes', 'dist/recipes', { recursive: true })\"",
    "dev": "tsc -p tsconfig.json --watch",
    "test": "vitest run"
  }
}