{
  "name": "bwrb",
  "version": "0.2.3",
  "description": "Schema-driven note management for markdown vaults",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "bwrb": "./dist/index.js"
  },
  "files": [
    "dist/**",
    "schema.schema.json",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "scripts": {
    "dev": "sh -c 'shift $([ \"$1\" = \"--\" ] && echo 1 || echo 0); exec tsx src/index.ts \"$@\"' --",
    "build": "tsup --config tsup.config.ts",
    "prepack": "npm run build",
    "test": "sh -c 'shift $([ \"$1\" = \"--\" ] && echo 1 || echo 0); exec vitest run \"$@\"' --",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:pty": "vitest run --reporter=verbose .pty.test.ts",
    "test:pty:ci": "sh -c 'mkdir -p artifacts && vitest run --reporter=json --outputFile=artifacts/pty-results.json .pty.test.ts'",
    "docs:check": "tsx src/tools/docs/check-concepts-sidebar.ts",
    "schema:gen": "tsx src/tools/schema/generate-json-schema.ts",
    "schema:check": "tsx src/tools/schema/generate-json-schema.ts --check",
    "typecheck": "tsc --noEmit",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "docs:install": "pnpm -C docs-site install",
    "docs:dev": "pnpm -C docs-site dev",
    "docs:build": "pnpm -C docs-site build",
    "docs:preview": "pnpm -C docs-site preview",
    "docs:lint": "node scripts/docs-link-consistency.mjs",
    "docs:doctor": "node scripts/docs-doctor.mjs",
    "qa": "pnpm typecheck && pnpm lint && pnpm schema:check && pnpm docs:lint && pnpm docs:doctor && pnpm build && pnpm test",
    "verify:pack": "node scripts/verify-pack.mjs",
    "knip": "knip",
    "knip:prod": "knip --production",
    "postinstall": "chmod +x node_modules/.pnpm/node-pty@*/node_modules/node-pty/prebuilds/darwin-*/spawn-helper 2>/dev/null || true"
  },
  "keywords": [
    "bwrb",
    "pkm",
    "markdown",
    "frontmatter",
    "cli",
    "schema"
  ],
  "author": "Alice Alexandra Moore",
  "license": "MIT",
  "dependencies": {
    "chalk": "^5.6.2",
    "commander": "^12.1.0",
    "gray-matter": "^4.0.3",
    "ignore": "^7.0.5",
    "jsep": "^1.4.0",
    "minimatch": "^10.1.2",
    "prompts": "^2.4.2",
    "slice-ansi": "^7.1.2",
    "string-width": "^7.2.0",
    "strip-ansi": "^7.1.2",
    "yaml": "^2.8.2",
    "zod": "^3.25.76"
  },
  "devDependencies": {
    "@eslint/js": "^9.39.2",
    "@types/node": "^22.19.9",
    "@types/prompts": "^2.4.9",
    "@vitest/coverage-v8": "^2.1.9",
    "eslint": "^9.39.2",
    "knip": "^5.83.1",
    "node-pty": "^1.1.0",
    "tsup": "^8.5.1",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.54.0",
    "vitest": "^2.1.9",
    "zod-to-json-schema": "^3.25.2"
  },
  "engines": {
    "node": ">=22"
  },
  "packageManager": "pnpm@10.11.0",
  "pnpm": {
    "onlyBuiltDependencies": [
      "node-pty"
    ]
  }
}
