-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.65 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.65 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
62
63
64
65
66
67
68
69
70
{
"name": "@theoribbi/claude-code-autocommit",
"version": "2.1.0",
"description": "Autocommit for Claude Code - MCP server and slash command for generating Conventional Commits",
"type": "module",
"main": "dist/mcp/index.js",
"exports": {
".": {
"import": "./dist/mcp/index.js",
"types": "./dist/mcp/index.d.ts"
},
"./mcp-server": {
"import": "./dist/mcp/index.js",
"types": "./dist/mcp/index.d.ts"
},
"./slash-command": {
"import": "./dist/slash-command/install.js",
"types": "./dist/slash-command/install.d.ts"
}
},
"bin": {
"claude-code-autocommit": "dist/mcp/index.js",
"claude-code-autocommit-slash": "dist/slash-command/install.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"claude",
"claude-code",
"git",
"commit",
"conventional-commits",
"model-context-protocol",
"slash-command",
"autocommit"
],
"author": "theoribbi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/theoribbi/claude-code-autocommit.git"
},
"bugs": {
"url": "https://github.com/theoribbi/claude-code-autocommit/issues"
},
"homepage": "https://github.com/theoribbi/claude-code-autocommit#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}