-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.27 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
{
"name": "@kodycodes/cli",
"version": "0.0.0-semantically-released",
"description": "Official Kody MCP client CLI: login, secure token storage, search, and execute.",
"type": "module",
"bin": {
"kody": "dist/bin.js"
},
"main": "./dist/cli.js",
"types": "./dist/cli.d.ts",
"exports": {
".": {
"types": "./dist/cli.d.ts",
"default": "./dist/cli.js"
}
},
"files": [
"dist",
"skills"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "tsx --test test/*.test.ts",
"validate": "npm run typecheck && npm run test && npm run build"
},
"engines": {
"node": ">=22"
},
"keywords": [
"kody",
"mcp",
"cli",
"oauth"
],
"author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kody-bot/cli.git"
},
"bugs": {
"url": "https://github.com/kody-bot/cli/issues"
},
"homepage": "https://kody.codes",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@inquirer/checkbox": "^5.2.2",
"@modelcontextprotocol/client": "2.0.0",
"@napi-rs/keyring": "^1.3.0",
"add-mcp": "^2.0.0",
"ps-list": "^9.0.0"
},
"devDependencies": {
"@types/node": "^24.5.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
}
}