{
  "name": "@chris-briddock/create-lit-app",
  "version": "0.2.0",
  "description": "Scaffold a production-ready Lit application with best practices baked in and optional SSR.",
  "keywords": [
    "lit",
    "lit-element",
    "web-components",
    "custom-elements",
    "ssr",
    "scaffold",
    "generator",
    "create-lit-app"
  ],
  "license": "MIT",
  "type": "module",
  "bin": {
    "create-lit-app": "./dist/src/bin/create-lit-app.js"
  },
  "files": [
    "dist/src",
    "templates",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=20.19.0"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
    "typecheck": "tsc --noEmit",
    "lint": "npm run typecheck && prettier --check \"src/**/*.ts\" \"test/**/*.ts\" \"scripts/*.js\" && node scripts/format-templates.js --check",
    "test": "npm run build && node scripts/test.js",
    "test:coverage": "npm run build && node scripts/test.js --experimental-test-coverage",
    "smoke": "npm run build && node scripts/smoke.js",
    "check-versions": "npm run build && node scripts/check-versions.js",
    "format:templates": "node scripts/format-templates.js",
    "prepublishOnly": "npm run clean && npm run build"
  },
  "devDependencies": {
    "@types/node": "^24.10.0",
    "prettier": "^3.9.6",
    "typescript": "^6.0.0"
  },
  "author": "Chris Briddock",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/chris-briddock/create-lit-app.git"
  },
  "bugs": {
    "url": "https://github.com/chris-briddock/create-lit-app/issues"
  },
  "homepage": "https://github.com/chris-briddock/create-lit-app#readme",
  "publishConfig": {
    "access": "public"
  }
}
