-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.09 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.09 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
{
"name": "@kommit/cli",
"version": "0.1.7",
"description": "CLI to install the Kommit MCP server for AI coding tools",
"bin": {
"kommit": "./bin/run"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "tsup-node",
"dev": "tsup-node --watch",
"typecheck": "tsc --noEmit"
},
"keywords": [
"kommit",
"mcp",
"cli",
"ai",
"claude",
"cursor",
"vscode"
],
"author": "Kommit AI <hello@usekommit.ai>",
"homepage": "https://github.com/KommitAI/kommit-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/KommitAI/kommit-cli.git"
},
"bugs": {
"url": "https://github.com/KommitAI/kommit-cli/issues"
},
"license": "MIT",
"dependencies": {
"@iarna/toml": "^2.2.5",
"consola": "^3.4.2",
"js-yaml": "^4.1.0",
"jsonc-parser": "^3.3.1",
"open": "^10.1.0",
"picocolors": "^1.1.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.19.8",
"@types/yargs": "^17.0.33",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
}
}