-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.19 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
{
"name": "k-kode",
"version": "0.1.0-alpha.1",
"private": false,
"description": "K kode (kk) is a Windows-first terminal coding agent backed by Moonshot Kimi.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ltianyi992/K-Kode.git"
},
"homepage": "https://github.com/ltianyi992/K-Kode",
"bugs": {
"url": "https://github.com/ltianyi992/K-Kode/issues"
},
"keywords": [
"cli",
"agent",
"terminal",
"windows",
"kimi",
"moonshot",
"coding-agent"
],
"files": [
"dist",
"src",
"scripts",
"README.md",
"LICENSE",
"tsconfig.json"
],
"bin": {
"kkode": "./dist/cli.js",
"kk": "./dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"check": "tsc --noEmit -p tsconfig.json",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"start:mock": "node dist/cli.js --prompt \"List files in this project briefly and use tools if needed.\"",
"link:local": "npm link"
},
"packageManager": "npm@10",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^24.0.0",
"tsx": "^4.20.0",
"typescript": "^5.9.0"
}
}