-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.08 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.08 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
{
"name": "kodo-code",
"description": "A CLI code assistant",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "bun --watch src/main.tsx",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [],
"author": "Jan Šimeček",
"license": "MIT",
"devDependencies": {
"@effect/language-service": "^0.34.0",
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.13.5",
"@types/bun": "^1.2.20",
"@types/marked-terminal": "^6.1.1",
"@types/node": "^24.3.0",
"@types/react": "^19.1.11",
"@types/turndown": "^5.0.5",
"@utima/eslint-config": "^0.19.0",
"dotenv": "^17.2.1",
"eslint": "8",
"type-fest": "^4.41.0",
"typescript": "^5.9.2"
},
"dependencies": {
"@ai-sdk/openai": "^2.0.20",
"@effect-atom/atom-react": "^0.1.10",
"@effect/platform": "^0.90.6",
"@effect/platform-bun": "^0.79.0",
"@langfuse/client": "^4.0.0-beta.7",
"@langfuse/core": "^4.0.0-beta.7",
"@langfuse/otel": "^4.0.0-beta.7",
"@langfuse/tracing": "^4.0.0-beta.7",
"@mishieck/ink-titled-box": "^0.3.0",
"@openrouter/ai-sdk-provider": "^1.1.2",
"@opentelemetry/auto-instrumentations-node": "^0.62.1",
"@opentelemetry/context-async-hooks": "^2.0.1",
"@opentelemetry/exporter-trace-otlp-proto": "^0.203.0",
"@opentelemetry/sdk-node": "^0.203.0",
"@opentelemetry/sdk-trace-base": "^2.0.1",
"@tanstack/react-query": "^5.85.5",
"ai": "^5.0.23",
"dedent": "^1.6.0",
"effect": "^3.17.9",
"ink": "^6.2.2",
"ink-big-text": "^2.0.0",
"ink-gradient": "^3.0.0",
"ink-link": "^4.1.0",
"ink-quicksearch-input": "^1.0.0",
"ink-spawn": "^0.1.4",
"ink-spinner": "^5.0.0",
"ink-syntax-highlight": "^2.0.2",
"ink-task-list": "^2.0.0",
"ink-text-input": "^6.0.0",
"jotai": "^2.13.1",
"langfuse-vercel": "^3.38.4",
"langsmith": "^0.3.63",
"marked": "^16.2.0",
"marked-terminal": "^7.3.0",
"react": "^19.1.1",
"turndown": "^7.2.1",
"zod": "4"
}
}