This repository was archived by the owner on May 24, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.45 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
{
"name": "kiri-code",
"private": true,
"version": "1.0.0",
"description": "An autonomous, serverless, 100% browser-based AI coding IDE.",
"repository": {
"type": "git",
"url": "https://github.com/Nwokike/kiri-code.git"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "pnpm run build && wrangler dev",
"deploy": "pnpm run build && wrangler deploy"
},
"dependencies": {
"@ai-sdk/amazon-bedrock": "^4.0.93",
"@ai-sdk/anthropic": "^3.0.69",
"@ai-sdk/cerebras": "^2.0.45",
"@ai-sdk/cohere": "^3.0.30",
"@ai-sdk/deepseek": "^2.0.29",
"@ai-sdk/fireworks": "^2.0.46",
"@ai-sdk/google": "^3.0.63",
"@ai-sdk/mistral": "^3.0.30",
"@ai-sdk/openai": "^3.0.52",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.0",
"@isomorphic-git/lightning-fs": "^4.6.2",
"@monaco-editor/react": "^4.7.0",
"@openrouter/ai-sdk-provider": "^2.5.1",
"@radix-ui/react-context-menu": "^2.2.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-tooltip": "^1.1.4",
"@uiw/react-codemirror": "^4.25.9",
"@webcontainer/api": "^1.6.1",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"ai": "^6.0.158",
"ai-sdk-ollama": "^3.8.3",
"buffer": "^6.0.3",
"cmdk": "^1.0.0",
"isomorphic-git": "^1.37.5",
"lucide-react": "^1.8.0",
"ollama-ai-provider": "^1.2.0",
"pyodide": "^0.29.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-markdown": "^9.0.1",
"react-resizable-panels": "^2.1.7",
"react-syntax-highlighter": "^15.6.1",
"remark-gfm": "^4.0.0",
"vite-plugin-pwa": "^0.21.2",
"workbox-window": "^7.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.32.2",
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.10",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.2.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.5.0",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.9",
"vite-plugin-node-polyfills": "^0.26.0",
"wrangler": "^4.82.2"
}
}