-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 786 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 786 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
34
35
36
37
{
"name": "ssh-llama",
"version": "1.0.1",
"description": "Parse SSH output with Zod and Ollama",
"main": "index.js",
"scripts": {
"build": "tsc",
"example": "ts-node src/example.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"ssh",
"llm",
"zod",
"ollama"
],
"author": "KC Haley",
"license": "ISC",
"dependencies": {
"ollama": "^0.5.12",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
}
}