-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
package.json
File metadata and controls
49 lines (49 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
{
"name": "@confluentinc/claude-code-confluent-plugin",
"version": "0.1.0-alpha.3",
"description": "Claude Code plugin for Confluent Cloud infrastructure provisioning",
"type": "module",
"main": "dist/index.js",
"bin": {
"claude-code-confluent-plugin": "dist/index.js"
},
"files": [
"dist",
".claude/commands",
".claude-plugin",
".mcp.json",
"CLAUDE.md"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/confluentinc/claude-code-confluent-plugin.git"
},
"homepage": "https://github.com/confluentinc/claude-code-confluent-plugin#readme",
"keywords": [
"confluent",
"kafka",
"claude-code",
"mcp",
"streaming",
"confluent-cloud"
],
"dependencies": {
"@confluentinc/claude-code-confluent-plugin": "^0.1.0-alpha.3",
"@modelcontextprotocol/sdk": "^1.29.0"
},
"devDependencies": {
"@types/node": "^22.19.15",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=22.0.0"
},
"license": "Confluent Community License Agreement"
}