-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.75 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.75 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
{
"name": "kode-ai",
"version": "1.2.20",
"description": "Kode - AI coding agent for the terminal powered by Sarvam AI",
"type": "module",
"main": "./dist/cli.js",
"bin": {
"kode": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"QUICKSTART.md",
"kode.json.example",
"AGENTS.md.template"
],
"scripts": {
"dev": "tsup --watch & node dist/cli.js",
"build": "tsup src/cli.tsx --format esm --dts",
"test": "vitest run",
"test:dogfood": "vitest run src/agent/dogfood.test.ts",
"smoke:package": "node scripts/smoke-package.mjs",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/askpext/kode"
},
"homepage": "https://github.com/askpext/kode#readme",
"bugs": {
"url": "https://github.com/askpext/kode/issues"
},
"keywords": [
"ai",
"coding-agent",
"sarvam",
"cli",
"developer-tools",
"terminal",
"tui",
"llm",
"code-generation",
"ai-agent"
],
"author": "Kode Contributors",
"license": "MIT",
"dependencies": {
"@inkjs/ui": "^2.0.0",
"cli-highlight": "^2.1.11",
"cosmiconfig": "^9.0.0",
"diff": "^7.0.0",
"execa": "^9.5.2",
"glob": "^13.0.6",
"html-to-text": "^9.0.5",
"ink": "^5.1.0",
"ink-select-input": "^6.2.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"react": "^18.3.1",
"sql.js": "^1.12.0",
"uuid": "^11.0.5"
},
"devDependencies": {
"@types/diff": "^6.0.0",
"@types/html-to-text": "^9.0.4",
"@types/node": "^25.5.0",
"@types/react": "^18.3.18",
"@types/uuid": "^10.0.0",
"tsup": "^8.3.6",
"typescript": "^5.7.2",
"vitest": "^4.1.2"
},
"engines": {
"node": ">=18.0.0"
}
}