-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.69 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.69 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
{
"name": "yterm-code",
"version": "1.0.0",
"description": "AI Terminal Assistant - LangGraph-based CLI with multi-provider support",
"main": "dist/cli.js",
"bin": {
"yterm": "./dist/cli.js"
},
"scripts": {
"start": "NODE_ENV=development bun run src/cli.tsx",
"dev": "NODE_ENV=development bun run src/cli.tsx",
"build": "tsc",
"build:bundle": "bun run scripts/build.ts",
"build:compile": "bun run scripts/build.ts --compile",
"build:cross": "bun run scripts/build.ts --cross",
"typecheck": "tsc --noEmit",
"test": "bun test"
},
"dependencies": {
"@langchain/anthropic": "^1.3.3",
"@langchain/core": "^1.1.8",
"@langchain/langgraph": "^1.0.7",
"@langchain/ollama": "^1.1.0",
"@langchain/openai": "^1.2.0",
"@vscode/ripgrep": "^1.17.0",
"chalk": "^5.6.2",
"cli-highlight": "^2.1.11",
"commander": "^14.0.2",
"dotenv": "^17.2.3",
"duckduckgo-websearch": "^0.1.7",
"glob": "^13.0.0",
"highlight.js": "^11.11.1",
"iconv-lite": "^0.7.1",
"ink": "^6.6.0",
"ink-text-input": "^6.0.0",
"marked": "^17.0.1",
"marked-terminal": "^7.3.0",
"ollama": "^0.6.3",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"winston": "^3.19.0",
"wrap-ansi": "^9.0.2",
"zod": "^4.2.1",
"zod-to-json-schema": "^3.25.0"
},
"devDependencies": {
"@types/bun": "^1.3.5",
"@types/glob": "^9.0.0",
"@types/node": "^24.10.4",
"@types/react": "^19.2.7",
"bun-types": "^1.3.5",
"react-devtools-core": "^7.0.1",
"typescript": "^5.9.3"
},
"keywords": ["ai", "cli", "langchain", "langgraph", "ollama", "openai", "anthropic"],
"author": "",
"license": "MIT",
"type": "module"
}