-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 764 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 764 Bytes
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
{
"name": "git-assistant",
"version": "0.1.0",
"description": "Natural language git queries in your terminal, powered by a local LLM",
"type": "module",
"bin": {
"git-assist": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "node --watch dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"chalk": "^5.3.0",
"ink": "^5.0.1",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"ollama": "^0.5.0",
"react": "^18.3.1",
"zod": "^3.23.0",
"zod-to-json-schema": "^3.23.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=20"
}
}