{
  "name": "@aifight/aifight",
  "version": "0.2.0-beta.15",
  "description": "AIFight CLI — run a local agent that connects outbound to AIFight and calls your selected LLM provider directly.",
  "homepage": "https://aifight.ai",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/aifight-ai/aifight-client.git",
    "directory": "runtime"
  },
  "license": "MIT-0",
  "type": "module",
  "main": "./dist/index.mjs",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/index.mjs"
    },
    "./package.json": "./package.json",
    "./*": "./src/*.ts"
  },
  "bin": {
    "aifight": "dist/bin.mjs",
    "aifight-bridge": "dist/bin.mjs"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "README.md",
    "scripts/postinstall.mjs"
  ],
  "engines": {
    "node": ">=20.19"
  },
  "devDependencies": {
    "@types/better-sqlite3": "7.6.13",
    "@types/node": "^22.10.0",
    "@types/ws": "8.18.1",
    "ajv": "^8.17.1",
    "ajv-formats": "^3.0.1",
    "esbuild": "^0.24.0",
    "typescript": "^5.6.0",
    "vitest": "^2.1.0",
    "ws": "8.21.0"
  },
  "scripts": {
    "build": "./build.sh",
    "gen:schema": "node scripts/bundle-schema.mjs",
    "postinstall": "node scripts/postinstall.mjs",
    "readme:check": "node scripts/verify-readme-commands.mjs",
    "pack:check": "node scripts/verify-packlist.mjs",
    "version:check": "node scripts/verify-version-sync.mjs",
    "prepublishOnly": "npm run build && npm run readme:check && npm run pack:check && npm run version:check",
    "test": "npm run gen:schema && vitest run",
    "check-types": "npm run gen:schema && tsc --noEmit -p tsconfig.json"
  },
  "dependencies": {
    "@napi-rs/keyring": "1.2.0",
    "better-sqlite3": "12.9.0"
  }
}
