{
  "name": "research-cli",
  "version": "0.2.1",
  "description": "AI-powered research assistant with web search capabilities and beautiful terminal UI",
  "type": "module",
  "main": "dist/cli.js",
  "bin": {
    "research-cli": "dist/cli.js"
  },
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=20"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/curtis-arch/research-cli.git"
  },
  "homepage": "https://github.com/curtis-arch/research-cli#readme",
  "keywords": [
    "cli",
    "research",
    "ai",
    "openai",
    "claude",
    "perplexity",
    "gemini",
    "llm",
    "gpt",
    "web-search",
    "streaming",
    "typescript",
    "terminal",
    "assistant"
  ],
  "author": "research-cli",
  "license": "MIT",
  "dependencies": {
    "@commander-js/extra-typings": "^12.0.0",
    "boxen": "^8.0.1",
    "chalk": "^5.5.0",
    "cli-progress": "^3.12.0",
    "clipanion": "4.0.0-rc.4",
    "commander": "^12.0.0",
    "keytar": "^7.9.0",
    "openai": "^4.68.0",
    "terminal-kit": "^3.1.2",
    "typanion": "^3.14.0"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.1.4",
    "@types/cli-progress": "^3.11.6",
    "@types/node": "^20.10.0",
    "@types/terminal-kit": "^2.5.7",
    "@typescript-eslint/eslint-plugin": "^6.15.0",
    "@typescript-eslint/parser": "^6.15.0",
    "dotenv": "^17.2.1",
    "dotenv-cli": "^10.0.0",
    "eslint": "^8.56.0",
    "ts-node": "^10.9.0",
    "typescript": "^5.3.0"
  },
  "scripts": {
    "build": "tsc",
    "dev": "dotenv -- ts-node --esm src/cli.ts",
    "clean": "rm -rf dist/",
    "lint": "eslint src/**/*.ts",
    "typecheck": "tsc --noEmit",
    "test": "pnpm build && pnpm test:run",
    "test:run": "echo 'Tests not implemented yet'"
  }
}