-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.58 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.58 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
92
93
94
95
96
97
98
99
100
{
"name": "@j0kz/mcp-agents",
"version": "1.1.1",
"description": "11-package monorepo with 9 professional MCP agents plus shared utilities - Smart Reviewer, Test Generator, Architecture Analyzer, Orchestrator, and more. Works with Claude Code, Cursor, Windsurf, and any MCP-compatible editor.",
"type": "module",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"build:reviewer": "npm run build -w packages/smart-reviewer",
"build:test-gen": "npm run build -w packages/test-generator",
"build:arch": "npm run build -w packages/architecture-analyzer",
"dev": "npm run dev --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:ci": "npm run test:ci --workspaces --if-present",
"test:coverage": "vitest run --coverage",
"test:coverage:check": "npm run test:coverage && node scripts/check-coverage.js",
"coverage:dashboard": "node scripts/coverage-dashboard.js",
"benchmark": "node benchmarks/orchestrator-benchmark-simple.js",
"install-all": "node scripts/install-all.js",
"install:tools": "npx @j0kz/mcp-agents@latest",
"install:skills": "node install.js skills",
"install:complete": "node install.js install",
"setup": "node install.js install",
"setup:quick": "npm run install:complete",
"version:sync": "node scripts/sync-versions.js",
"version:check-shared": "node scripts/enforce-shared-version.js",
"update:test-count": "node scripts/update-test-count.js",
"publish-all": "npm run build && npm publish --workspaces --access public",
"clean": "npm run clean --workspaces --if-present && rm -rf node_modules",
"format": "prettier --write \"**/*.{js,ts,json,md}\"",
"lint": "eslint \"packages/*/src/**/*.{ts,js}\"",
"lint:fix": "eslint \"packages/*/src/**/*.{ts,js}\" --fix",
"validate:baseline": "node scripts/validate-improvements.js --baseline",
"validate:check": "node scripts/validate-improvements.js --validate",
"mutation:test": "node scripts/mutation-test.js",
"skills:index": "node scripts/generate-skill-index.js",
"skills:validate": "node scripts/validate-skills.js",
"skills:validate:fix": "node scripts/validate-skills.js --fix",
"skills:validate:strict": "node scripts/validate-skills.js --strict"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"archiver": "^7.0.1",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2",
"typescript": "^5.3.3",
"vitest": "^3.2.4"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.19.1"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"claude-code",
"cursor",
"windsurf",
"roo-code",
"ai-agents",
"code-review",
"testing",
"architecture",
"ai-tools",
"code-quality",
"refactoring",
"security-scanner",
"api-design",
"database-schema",
"documentation-generator"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"author": "j0kz (https://www.npmjs.com/~j0kz)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/j0kz/mcp-agents.git"
},
"bugs": {
"url": "https://github.com/j0kz/mcp-agents/issues"
},
"homepage": "https://github.com/j0kz/mcp-agents#readme",
"bin": {
"mcp-agents": "./install.js",
"claude-skills": "./scripts/install-claude-skills.js"
},
"publishConfig": {
"access": "public"
}
}