-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.15 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
{
"name": "kimi-code",
"version": "1.0.11",
"description": "A CLI tool that starts anthropic-proxy with Kimi model and runs claude-code",
"main": "index.js",
"bin": {
"kimi": "index.js"
},
"scripts": {
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish",
"publish:beta": "npm version prerelease --preid=beta && npm publish --tag beta",
"local:install": "npm link",
"local:uninstall": "npm unlink -g kimi-code",
"clean": "npm cache clean --force"
},
"files": [
"index.js",
"proxy.js",
"README.md",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/whitesmith/kimi-code.git"
},
"bugs": {
"url": "https://github.com/whitesmith/kimi-code/issues"
},
"homepage": "https://github.com/whitesmith/kimi-code#readme",
"dependencies": {
"commander": "^11.0.0",
"fastify": "^5.2.1",
"keytar": "^7.9.0"
},
"keywords": [
"kimi",
"anthropic",
"proxy",
"claude",
"cli",
"ai",
"groq",
"moonshot"
],
"license": "MIT"
}