claude-code-github-ci-channel 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "claude-code-github-ci-channel",
3
+ "version": "0.1.0",
4
+ "description": "Claude Code MCP channel plugin — pushes GitHub Actions CI/CD results into running Claude Code sessions",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "github-ci": "dist/index.js",
9
+ "github-ci-mux": "dist/mux.js"
10
+ },
11
+ "files": [
12
+ "dist/",
13
+ "config.example.yaml",
14
+ ".env.example",
15
+ "README.md"
16
+ ],
17
+ "scripts": {
18
+ "start": "bun run src/index.ts",
19
+ "start:mux": "bun run src/mux.ts",
20
+ "build": "bun run scripts/build.ts",
21
+ "prepublishOnly": "bun test && bun run build",
22
+ "typecheck": "tsc --noEmit",
23
+ "lint": "biome check src/",
24
+ "lint:fix": "biome check --write src/",
25
+ "test": "bun test",
26
+ "test:coverage": "bun test --coverage",
27
+ "watch": "bun run src/ghwatch.ts"
28
+ },
29
+ "dependencies": {
30
+ "@modelcontextprotocol/sdk": "^1.10.2",
31
+ "yaml": "^2.8.3"
32
+ },
33
+ "devDependencies": {
34
+ "@biomejs/biome": "^2.4.10",
35
+ "@types/bun": "^1.3.11",
36
+ "typescript": "^6.0.2"
37
+ },
38
+ "engines": {
39
+ "bun": ">=1.1.0"
40
+ },
41
+ "keywords": [
42
+ "claude-code",
43
+ "mcp",
44
+ "github-actions",
45
+ "ci-cd",
46
+ "channel",
47
+ "webhook"
48
+ ],
49
+ "license": "MIT",
50
+ "repository": {
51
+ "type": "git",
52
+ "url": "git+https://github.com/drmf-cz/claude-code-github-ci-channel.git"
53
+ },
54
+ "homepage": "https://github.com/drmf-cz/claude-code-github-ci-channel#readme",
55
+ "bugs": {
56
+ "url": "https://github.com/drmf-cz/claude-code-github-ci-channel/issues"
57
+ }
58
+ }