-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.24 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@eclipsesource/review-guard-mcp",
"version": "0.2.0",
"description": "MCP server that lets agents work on GitHub PR reviews behind a safety boundary: pending (draft) reviews by default, submitting as an explicit opt-in",
"keywords": [
"mcp",
"model-context-protocol",
"github",
"pull-request",
"code-review",
"review",
"ai-agent"
],
"license": "MIT",
"author": "EclipseSource (https://eclipsesource.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/eclipsesource/review-guard.git"
},
"homepage": "https://github.com/eclipsesource/review-guard#readme",
"bugs": {
"url": "https://github.com/eclipsesource/review-guard/issues"
},
"type": "module",
"bin": {
"review-guard-mcp": "bin/review-guard-mcp.js"
},
"files": [
"bin",
"dist"
],
"engines": {
"node": ">=22"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "^22.22.2 || ^24.15.0 || >=26.0.0",
"onFail": "error"
},
"packageManager": {
"name": "npm",
"version": ">=12",
"onFail": "error"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsx watch src/index.ts",
"start": "node --import tsx src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"prepack": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@octokit/graphql": "^9.0.3",
"@octokit/rest": "^22.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.20.1",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.9.6",
"tsx": "^4.23.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.65.0",
"vitest": "^4.1.10"
},
"allowScripts": {
"esbuild@0.28.1": true
},
"overrides": {
"@hono/node-server": "^2.0.11"
}
}