{
  "name": "context-cli",
  "version": "0.1.3",
  "description": "Ambient intelligence layer for your terminal - adds context-aware suggestions to any command",
  "main": "dist/index.js",
  "type": "module",
  "bin": {
    "context": "./dist/cli/index.js"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "test": "jest",
    "lint": "eslint src/**/*.ts",
    "prepare": "npm run build",
    "install-hooks": "node dist/install-hooks.js",
    "postinstall": "node scripts/postinstall.js"
  },
  "keywords": [
    "cli",
    "terminal",
    "ai",
    "context",
    "productivity",
    "shell"
  ],
  "author": "josharsh",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/josharsh/context-cli.git"
  },
  "bugs": {
    "url": "https://github.com/josharsh/context-cli/issues"
  },
  "homepage": "https://github.com/josharsh/context-cli#readme",
  "files": [
    "dist/",
    "scripts/",
    "README.md",
    "LICENSE",
    "USAGE_GUIDE.md",
    "CHANGELOG.md"
  ],
  "dependencies": {
    "better-sqlite3": "^11.5.0",
    "boxen": "^7.1.1",
    "chalk": "^5.3.0",
    "commander": "^11.1.0",
    "dotenv": "^16.3.1",
    "openai": "^4.24.1",
    "ora": "^8.0.1"
  },
  "devDependencies": {
    "@types/better-sqlite3": "^7.6.8",
    "@types/node": "^20.10.5",
    "@typescript-eslint/eslint-plugin": "^6.15.0",
    "@typescript-eslint/parser": "^6.15.0",
    "eslint": "^8.56.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.1",
    "typescript": "^5.3.3"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "overrides": {
    "better-sqlite3": "^11.5.0"
  }
}
