-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.17 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.17 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
{
"name": "codeguardian-studio",
"version": "4.1.1",
"description": "AI-powered code refactor engine for large repositories, built on Claude Code + MCP.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"ccg": "./dist/bin/ccg.js"
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"dev": "tsc --watch",
"start": "node dist/index.js",
"start:api": "node dist/api/index.js",
"dev:api": "npm run build && npm run start:api",
"test": "vitest",
"test:e2e": "bash tests/e2e-quickstart.sh",
"test:coverage": "vitest --coverage",
"lint": "eslint src/",
"format": "prettier --write src/",
"prepublishOnly": "npm run build"
},
"keywords": [
"code-guardian",
"code-optimizer",
"refactoring",
"code-quality",
"technical-debt",
"claude-code",
"mcp",
"model-context-protocol",
"ai-refactor",
"code-analysis",
"hotspot-detection"
],
"author": "Mona <hello@codeguardian.studio>",
"license": "MIT",
"homepage": "https://codeguardian.studio",
"repository": {
"type": "git",
"url": "https://github.com/phuongrealmax/code-guardian"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@ccg/cloud-client": "file:packages/cloud-client",
"@modelcontextprotocol/sdk": "^1.25.1",
"better-sqlite3": "^9.4.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"cors": "^2.8.5",
"express": "^5.2.1",
"glob": "^10.3.0",
"js-yaml": "^4.1.0",
"playwright": "^1.49.0",
"uuid": "^9.0.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.0.0",
"@types/uuid": "^9.0.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^8.56.0",
"prettier": "^3.2.0",
"typescript": "^5.7.2",
"vitest": "^3.2.4"
},
"files": [
"dist/",
"templates/",
"README.md",
"LICENSE"
]
}