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{2 "name": "khaelor",3 "version": "0.1.1",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 },11 "files": [12 "dist",13 "README.md"14 ],15 "engines": {16 "node": ">=22"17 },18 "scripts": {19 "build": "tsc -p tsconfig.json",20 "dev": "tsx src/cli/main.ts",21 "test": "vitest run",22 "test:watch": "vitest",23 "typecheck": "tsc --noEmit",24 "lint": "eslint src",25 "check:headers": "bash scripts/check-headers.sh",26 "check": "npm run typecheck && npm run lint && npm run test && npm run check:headers"27 },28 "dependencies": {29 "@anthropic-ai/sdk": "^0.70.0"30 },31 "devDependencies": {32 "@types/node": "^22.10.0",33 "eslint": "^9.20.0",34 "tsx": "^4.19.0",35 "typescript": "^5.7.0",36 "typescript-eslint": "^8.24.0",37 "vitest": "^3.0.0"38 }39}40