{
  "name": "@bragdoc/cli",
  "version": "1.5.1",
  "description": "CLI tool for managing your brag document",
  "main": "dist/lib.js",
  "types": "dist/lib.d.ts",
  "bin": {
    "bragdoc": "dist/index.js"
  },
  "exports": {
    ".": {
      "types": "./dist/lib.d.ts",
      "default": "./dist/lib.js"
    },
    "./lib": {
      "types": "./dist/lib.d.ts",
      "default": "./dist/lib.js"
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/",
    "scope": "@bragdoc"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/edspencer/bragdoc-ai.git",
    "directory": "cli"
  },
  "keywords": [
    "brag-document",
    "cli",
    "career",
    "achievements"
  ],
  "author": "Ed Spencer",
  "license": "MIT",
  "dependencies": {
    "@ai-sdk/anthropic": "^2.0.35",
    "@ai-sdk/google": "^2.0.23",
    "@ai-sdk/openai": "^2.0.53",
    "ai": "^5.0.76",
    "boxen": "^8.0.1",
    "chalk": "^4.1.2",
    "commander": "^11.1.0",
    "inquirer": "^12.10.0",
    "mdx-prompt": "^0.4.3",
    "node-fetch": "^2.7.0",
    "ollama-ai-provider-v2": "^1.5.1",
    "open": "^10.2.0",
    "p-limit": "^7.2.0",
    "react": "^19.2.0",
    "winston": "^3.18.3",
    "yaml": "^2.8.1",
    "zod": "^4.1.12"
  },
  "devDependencies": {
    "@changesets/cli": "^2.29.7",
    "@types/inquirer": "^9.0.9",
    "@types/jest": "^29.5.14",
    "@types/mock-fs": "^4.13.4",
    "@types/node": "^24.9.1",
    "@types/node-fetch": "^2.6.13",
    "copyfiles": "^2.4.1",
    "jest": "^29.7.0",
    "mock-fs": "^5.5.0",
    "ts-jest": "^29.4.5",
    "ts-node": "^10.9.2",
    "tsx": "^4.20.6",
    "typescript": "^5.9.3"
  },
  "scripts": {
    "build": "tsc && pnpm build:copy-assets && pnpm build:chmod",
    "build:watch": "tsc -w && pnpm build:copy-assets",
    "build:copy-assets": "copyfiles -u 1 'src/**/*.mdx' dist",
    "build:chmod": "chmod +x dist/index.js",
    "typecheck": "tsc --noEmit",
    "start": "node dist/index.js",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:integration": "../../tests/integration/cli-extraction.sh",
    "lint": "biome lint --write --unsafe src/",
    "format": "biome format --write src/",
    "link-cli": "pnpm link --global",
    "changeset": "changeset",
    "version": "changeset version",
    "release": "pnpm build && changeset publish"
  }
}