-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.77 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
71
72
73
74
75
{
"name": "@htekdev/actions-debugger",
"version": "1.1.0",
"description": "65+ real GitHub Actions errors, queryable by agents. CLI + MCP server + Copilot skills + error database.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"actions-debugger": "./dist/entry.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./mcp": "./dist/mcp.js"
},
"files": [
"dist",
"errors",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"validate-errors": "node --import tsx scripts/validate-errors.ts",
"start": "node dist/mcp.js",
"start:mcp": "node dist/mcp.js",
"start:cli": "node dist/entry.js",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"github-actions",
"debugging",
"mcp",
"model-context-protocol",
"copilot",
"ci-cd",
"error-database",
"cli"
],
"author": "Hector Flores <hector.flores@htek.dev> (https://htek.dev)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/htekdev/actions-debugger.git"
},
"homepage": "https://htek.dev/articles/github-actions-debugging-guide",
"bugs": {
"url": "https://github.com/htekdev/actions-debugger/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"commander": "^15.0.0",
"glob": "^11.0.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=20.0.0"
}
}