{
  "name": "@kazzle/app",
  "version": "0.1.916",
  "description": "Contracts, tool helpers, Vite helper, and templates for building Kazzle apps.",
  "license": "UNLICENSED",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Kazzle-ai/kazzle.git",
    "directory": "packages/kazzle-app"
  },
  "type": "module",
  "sideEffects": false,
  "//exports": "Exports point at compiled dist so isolated consumers (Vite/Node under node_modules, deployed apps, published npm tarball) never load raw .ts — Node/Vite can't type-strip TS under node_modules. dist is a build artifact (gitignored), kept fresh by the `prepare` script below on `bun install`/`npm publish` and by the local pack step in server/templates/template-local-harness.ts.",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./tools": {
      "types": "./dist/tools.d.ts",
      "import": "./dist/tools.js"
    },
    "./client": {
      "types": "./dist/client.d.ts",
      "import": "./dist/client.js"
    },
    "./vite": {
      "types": "./dist/vite.d.ts",
      "import": "./dist/vite.js"
    },
    "./pwa": {
      "types": "./dist/pwa.d.ts",
      "import": "./dist/pwa.js"
    },
    "./templates": {
      "types": "./dist/templates.d.ts",
      "import": "./dist/templates.js"
    },
    "./migrations": {
      "types": "./dist/migrations.d.ts",
      "import": "./dist/migrations.js"
    },
    "./package.json": "./package.json"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "templates",
    "README.md"
  ],
  "scripts": {
    "build": "bun run scripts/build.ts",
    "prepare": "bun run scripts/build.ts",
    "check": "bun run scripts/build.ts && bun test src",
    "test": "bun test src"
  },
  "dependencies": {
    "vite-plugin-pwa": "^1.0.0",
    "workbox-window": "^7.4.1"
  },
  "peerDependencies": {
    "vite": ">=5",
    "zod": "^3 || ^4"
  },
  "peerDependenciesMeta": {
    "vite": {
      "optional": true
    },
    "zod": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/node": "^25.1.0",
    "typescript": "7.0.2",
    "vite": "^6.3.5",
    "zod": "^4.3.6"
  }
}
