-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.28 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.28 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
90
91
{
"name": "codeguardian-mcp",
"version": "1.4.8",
"description": "CodeGuardian MCP - Automated Quality Assurance for Vibe Coding with AI Hallucination Prevention",
"main": "dist/server.js",
"bin": {
"codeguardian-mcp": "dist/server.js"
},
"type": "module",
"files": [
"dist",
"wasm",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/server.js",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:jest": "jest",
"test:jest:watch": "jest --watch",
"test:jest:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix"
},
"keywords": [
"mcp",
"code-quality",
"vibe-coding",
"ai-coding",
"quality-assurance",
"security",
"testing",
"hallucination-prevention"
],
"author": "CodeGoddy",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/codegoddy/codeguardian_mcp.git"
},
"bugs": {
"url": "https://github.com/codegoddy/codeguardian_mcp/issues"
},
"homepage": "https://github.com/codegoddy/codeguardian_mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"acorn": "^8.15.0",
"acorn-walk": "^8.3.4",
"chokidar": "^5.0.0",
"eslint": "^9.39.2",
"glob": "^13.0.0",
"minimatch": "^10.0.1",
"semver": "^7.7.3",
"simple-git": "^3.30.0",
"smol-toml": "^1.6.0",
"web-tree-sitter": "^0.26.5"
},
"devDependencies": {
"tree-sitter-javascript": "^0.25.0",
"tree-sitter-python": "^0.25.0",
"tree-sitter-typescript": "^0.23.2",
"@swc/core": "^1.15.10",
"@swc/jest": "^0.2.39",
"@types/eslint": "^9.6.1",
"@types/jest": "^30.0.0",
"@types/minimatch": "^5.1.2",
"@types/node": "^25.0.9",
"@vitest/coverage-v8": "^4.0.18",
"fast-check": "^4.5.3",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.0.0"
},
"pnpm": {
"executionEnv": {
"nodeVersion": "20.20.0"
}
}
}