-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.18 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.18 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
{
"name": "@corbat-tech/coding-standards-mcp",
"version": "2.1.0",
"description": "AI coding standards that apply themselves - MCP server that enforces production-grade code",
"mcpName": "io.github.corbat-tech/coding-standards",
"type": "module",
"main": "dist/index.js",
"bin": {
"coding-standards-mcp": "dist/index.js",
"@corbat-tech/coding-standards-mcp": "dist/index.js",
"corbat-init": "dist/cli/init.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/corbat-tech/coding-standards-mcp.git"
},
"homepage": "https://github.com/corbat-tech/coding-standards-mcp#readme",
"bugs": {
"url": "https://github.com/corbat-tech/coding-standards-mcp/issues"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"init": "node dist/cli/init.js",
"dev": "node --import tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"clean": "rm -rf dist",
"prepublishOnly": "npm run validate && npm run build",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check .",
"check:fix": "biome check --write .",
"validate": "npm run check && npm run test",
"validate:arch": "depcruise src --config .dependency-cruiser.cjs"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"ai",
"coding-standards",
"best-practices",
"hexagonal-architecture",
"ddd",
"clean-code",
"tdd"
],
"author": "Corbat <info@corbat.tech> (https://corbat.tech)",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"profiles",
"standards",
"assets"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"p-retry": "^7.1.1",
"yaml": "^2.3.4",
"zod": "^4.3.5"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@types/node": "^25.0.9",
"@vitest/coverage-v8": "^4.0.17",
"dependency-cruiser": "^17.3.7",
"tsx": "^4.6.0",
"typescript": "^5.3.0",
"vitest": "^4.0.17"
}
}