{
  "name": "offgrid-ai",
  "version": "1.0.13",
  "description": "Privacy-first CLI for running local LLMs — discover, configure, run, and chat",
  "author": "Eeshan Srivastava (https://eeshans.com)",
  "type": "module",
  "bin": {
    "offgrid-ai": "bin/offgrid-ai.mjs"
  },
  "files": [
    "bin/*.mjs",
    "src/*.mjs",
    "src/commands/*.mjs",
    "resources/web-search.json",
    "resources/skills/",
    "CHANGELOG.md",
    "install.sh"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/eeshansrivastava89/offgrid-ai.git"
  },
  "homepage": "https://github.com/eeshansrivastava89/offgrid-ai#readme",
  "bugs": {
    "url": "https://github.com/eeshansrivastava89/offgrid-ai/issues"
  },
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "start": "node bin/offgrid-ai.mjs",
    "test": "node scripts/verify-imports.mjs && node --test test/*.mjs",
    "test:integration": "OFFGRID_INTEGRATION=1 node --test test/integration/*.mjs",
    "lint": "eslint src/*.mjs src/commands/*.mjs scripts/*.mjs bin/*.mjs test/*.mjs",
    "check:privacy": "node scripts/privacy-gate.mjs",
    "release:check": "bash scripts/release-check.sh",
    "release:check:fast": "bash scripts/release-check.sh --skip-install --skip-manual",
    "prepack": "npm run check:privacy",
    "pretest": "npm run lint"
  },
  "dependencies": {
    "@inquirer/prompts": "^8.5.2",
    "picocolors": "^1.1.0"
  },
  "keywords": [
    "local-llm",
    "llama-cpp",
    "cli",
    "privacy",
    "llm",
    "ai"
  ],
  "license": "MIT",
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "eslint": "^10.4.1",
    "globals": "^17.6.0"
  }
}
