{
  "name": "create-noy-db",
  "version": "0.3.2",
  "description": "Wizard + CLI tool for noy-db: scaffold a fresh Nuxt 4 + Pinia encrypted store, or add collections to an existing project. Invoke via `npm create noy-db`.",
  "license": "MIT",
  "author": "vLannaAi <vicio@lanna.ai>",
  "homepage": "https://github.com/vLannaAi/noy-db/tree/main/packages/create-noy-db#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vLannaAi/noy-db.git",
    "directory": "packages/create-noy-db"
  },
  "bugs": {
    "url": "https://github.com/vLannaAi/noy-db/issues"
  },
  "type": "module",
  "bin": {
    "create-noy-db": "dist/bin/create.js",
    "noy-db": "dist/bin/noy-db.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "templates",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=22.0.0"
  },
  "dependencies": {
    "@clack/prompts": "^0.9.1",
    "picocolors": "^1.1.1",
    "magicast": "^0.3.5",
    "diff": "^7.0.0",
    "@noy-db/hub": "0.5.0",
    "@noy-db/to-memory": "0.5.0",
    "@noy-db/to-file": "0.5.0"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "@types/diff": "^7.0.0"
  },
  "keywords": [
    "noy-db",
    "create",
    "scaffolder",
    "wizard",
    "cli",
    "nuxt",
    "nuxt4",
    "pinia",
    "vue",
    "encryption",
    "zero-knowledge"
  ],
  "publishConfig": {
    "access": "public",
    "tag": "latest"
  },
  "scripts": {
    "build": "tsup && node scripts/postbuild.mjs",
    "test": "vitest run",
    "lint": "eslint src/",
    "typecheck": "tsc --noEmit"
  }
}