SPB Git

spb/khaelor Public

KHAELOR — a terminal-native autonomous engineering agent powered by Anthropic.

TypeScript 82.9% HTML 14.9% CSS 1.1% JavaScript 0.7%
1.0 KB · 41 lines json
Raw Blame History
1{2  "name": "khaelor",3  "version": "0.2.0",4  "description": "KHAELOR — a terminal-native autonomous engineering agent powered by Anthropic.",5  "author": "Simon-Pierre Boucher <contact@spboucher.ai>",6  "license": "UNLICENSED",7  "type": "module",8  "bin": {9    "khaelor": "./dist/cli/main.js",10    "khaelord": "./dist/daemon/main.js"11  },12  "files": [13    "dist",14    "README.md"15  ],16  "engines": {17    "node": ">=22"18  },19  "scripts": {20    "build": "tsc -p tsconfig.json",21    "dev": "tsx src/cli/main.ts",22    "test": "vitest run",23    "test:watch": "vitest",24    "typecheck": "tsc --noEmit",25    "lint": "eslint src",26    "check:headers": "bash scripts/check-headers.sh",27    "check": "npm run typecheck && npm run lint && npm run test && npm run check:headers"28  },29  "dependencies": {30    "@anthropic-ai/sdk": "^0.70.0"31  },32  "devDependencies": {33    "@types/node": "^22.10.0",34    "eslint": "^9.20.0",35    "tsx": "^4.19.0",36    "typescript": "^5.7.0",37    "typescript-eslint": "^8.24.0",38    "vitest": "^3.0.0"39  }40}41