@shareai-lab/kode 1.0.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +661 -0
- package/README.md +113 -0
- package/cli.mjs +1803 -0
- package/package.json +92 -0
- package/yoga.wasm +0 -0
package/package.json
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@shareai-lab/kode",
|
|
3
|
+
"version": "1.0.69",
|
|
4
|
+
"bin": {
|
|
5
|
+
"kode": "cli.mjs"
|
|
6
|
+
},
|
|
7
|
+
"engines": {
|
|
8
|
+
"node": ">=18.0.0"
|
|
9
|
+
},
|
|
10
|
+
"type": "module",
|
|
11
|
+
"author": "ShareAI-lab <ai-lab@foxmail.com>",
|
|
12
|
+
"license": "",
|
|
13
|
+
"description": "Use Agent Kode, Last's AI assistant, right from your terminal. Agent Kode can understand your codebase, edit files, run terminal commands, and handle entire workflows for you.",
|
|
14
|
+
"homepage": "https://github.com/shareAI-lab/agent-kode",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/shareAI-lab/agent-kode.git"
|
|
18
|
+
},
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/shareAI-lab/agent-kode/issues"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"cli.mjs",
|
|
24
|
+
"yoga.wasm"
|
|
25
|
+
],
|
|
26
|
+
"scripts": {
|
|
27
|
+
"dev": "tsx ./src/entrypoints/cli.tsx --verbose",
|
|
28
|
+
"build": "bun build src/entrypoints/cli.tsx --minify --outfile cli.mjs --target=node",
|
|
29
|
+
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json}\"",
|
|
30
|
+
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json}\""
|
|
31
|
+
},
|
|
32
|
+
"optionalDependencies": {
|
|
33
|
+
"@img/sharp-darwin-arm64": "^0.33.5",
|
|
34
|
+
"@img/sharp-linux-arm": "^0.33.5",
|
|
35
|
+
"@img/sharp-linux-x64": "^0.33.5",
|
|
36
|
+
"@img/sharp-win32-x64": "^0.33.5"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@anthropic-ai/bedrock-sdk": "^0.12.6",
|
|
40
|
+
"@anthropic-ai/sdk": "^0.39.0",
|
|
41
|
+
"@anthropic-ai/vertex-sdk": "^0.7.0",
|
|
42
|
+
"@commander-js/extra-typings": "^13.1.0",
|
|
43
|
+
"@inkjs/ui": "^2.0.0",
|
|
44
|
+
"@modelcontextprotocol/sdk": "^1.15.1",
|
|
45
|
+
"@statsig/js-client": "^3.18.2",
|
|
46
|
+
"@types/lodash-es": "^4.17.12",
|
|
47
|
+
"@types/react": "^19.1.8",
|
|
48
|
+
"ansi-escapes": "^7.0.0",
|
|
49
|
+
"chalk": "^5.4.1",
|
|
50
|
+
"cli-highlight": "^2.1.11",
|
|
51
|
+
"cli-table3": "^0.6.5",
|
|
52
|
+
"commander": "^13.1.0",
|
|
53
|
+
"debug": "^4.4.1",
|
|
54
|
+
"diff": "^7.0.0",
|
|
55
|
+
"dotenv": "^16.6.1",
|
|
56
|
+
"env-paths": "^3.0.0",
|
|
57
|
+
"figures": "^6.1.0",
|
|
58
|
+
"glob": "^11.0.3",
|
|
59
|
+
"highlight.js": "^11.11.1",
|
|
60
|
+
"ink": "^5.2.1",
|
|
61
|
+
"ink-link": "^4.1.0",
|
|
62
|
+
"lodash-es": "^4.17.21",
|
|
63
|
+
"lru-cache": "^11.1.0",
|
|
64
|
+
"marked": "^15.0.12",
|
|
65
|
+
"nanoid": "^5.1.5",
|
|
66
|
+
"openai": "^4.104.0",
|
|
67
|
+
"react": "18.3.1",
|
|
68
|
+
"semver": "^7.7.2",
|
|
69
|
+
"shell-quote": "^1.8.3",
|
|
70
|
+
"spawn-rx": "^5.1.2",
|
|
71
|
+
"undici": "^7.11.0",
|
|
72
|
+
"wrap-ansi": "^9.0.0",
|
|
73
|
+
"zod": "^3.25.76",
|
|
74
|
+
"zod-to-json-schema": "^3.24.6"
|
|
75
|
+
},
|
|
76
|
+
"devDependencies": {
|
|
77
|
+
"@types/node": "^24.1.0",
|
|
78
|
+
"prettier": "^3.6.2",
|
|
79
|
+
"react-devtools-core": "^6.1.5",
|
|
80
|
+
"tsx": "^4.20.3",
|
|
81
|
+
"typescript": "^5.9.2"
|
|
82
|
+
},
|
|
83
|
+
"pnpm": {
|
|
84
|
+
"overrides": {
|
|
85
|
+
"slice-ansi": "^7.1.0",
|
|
86
|
+
"ansi-styles": "^6.2.1",
|
|
87
|
+
"chalk": "^5.4.1",
|
|
88
|
+
"string-width": "^7.1.0",
|
|
89
|
+
"strip-ansi": "^7.1.0"
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
package/yoga.wasm
ADDED
|
Binary file
|