-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@cogitator/binharic-cli",
"version": "0.1.0-alpha.6",
"description": "A multi-provider AI coding agent with the persona of a Tech-Priest",
"main": "dist/cli.js",
"type": "module",
"bin": {
"binharic": "./dist/cli.js",
"binharic-cli": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "node dist/cli.js",
"dev": "nodemon",
"build": "rm -rf ./dist && tsc && tsc-alias",
"prepublishOnly": "npm run build",
"test": "vitest run",
"coverage": "vitest run --coverage",
"test:watch": "vitest",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier . --write",
"typecheck": "tsc -p tsconfig.spec.json"
},
"keywords": [
"ai",
"coding-agent",
"ai-assistant",
"typescript",
"cli",
"llm"
],
"author": "Hassan Abedi",
"license": "MIT",
"dependencies": {
"@ai-sdk/anthropic": "^2.0.4",
"@ai-sdk/google": "^2.0.6",
"@ai-sdk/openai": "^2.0.15",
"@modelcontextprotocol/sdk": "^1.17.3",
"@types/marked": "^5.0.2",
"ai": "^5.0.15",
"dotenv": "^16.4.5",
"gpt-tokenizer": "^3.0.1",
"html-to-text": "^9.0.5",
"ink": "^6.2.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"json5": "^2.2.3",
"marked": "^16.2.0",
"ollama-ai-provider-v2": "^1.1.1",
"os-locale": "^6.0.2",
"react": "^19.1.1",
"simple-git": "^3.28.0",
"typescript": "^5.5.3",
"winston": "^3.17.0",
"zod": "^4.0.17",
"zod-to-ts": "^1.2.0",
"zustand": "^5.0.7"
},
"devDependencies": {
"@types/node": "^20.14.9",
"@types/react": "^19.1.10",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"ink-testing-library": "^4.0.0",
"jsdom": "^26.1.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.2",
"tsc-alias": "^1.8.10",
"tsx": "^4.16.2",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20.0.0"
}
}