-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.85 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
{
"name": "sub-agents-mcp",
"version": "0.8.0",
"mcpName": "io.github.shinpr/sub-agents-mcp",
"description": "MCP server for delegating tasks to specialized AI assistants in Cursor and other tools",
"type": "module",
"main": "dist/index.js",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.map",
"!dist/**/__tests__",
"!dist/**/*.test.*",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"sub-agents",
"ai-agents",
"claude-code",
"cursor",
"gemini",
"codex",
"llm",
"cli",
"agent-orchestration"
],
"author": "Shinsuke Kagawa",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/shinpr/sub-agents-mcp.git"
},
"bugs": {
"url": "https://github.com/shinpr/sub-agents-mcp/issues"
},
"homepage": "https://github.com/shinpr/sub-agents-mcp#readme",
"bin": {
"sub-agents-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsx src/index.ts",
"watch": "tsx watch src/index.ts",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:coverage:summary": "node scripts/show-coverage.js",
"test:coverage:clean": "rm -rf coverage .vitest-cache",
"test:coverage:fresh": "npm run test:coverage:clean && npm run test:coverage",
"test:watch": "vitest",
"format": "biome format --write src",
"format:check": "biome format src",
"lint": "biome lint src",
"lint:fix": "biome lint --write src",
"check": "biome check src",
"check:fix": "biome check --write src",
"check:deps": "dpdm --no-warning --no-tree --circular --exclude \"node_modules|__tests__|\\.test\\.ts$|\\.spec\\.ts$\" --tsconfig ./tsconfig.json --transform --exit-code circular:1 src/index.ts",
"check:knip": "knip",
"check:all": "npm run check && npm run lint && npm run format:check && npm run check:deps && npm run check:knip && npm run build && npm run test",
"cleanup:processes": "bash ./scripts/cleanup-test-processes.sh",
"test:safe": "npm test && npm run cleanup:processes",
"lang:ja": "node scripts/set-language.js ja",
"lang:en": "node scripts/set-language.js en",
"prepare": "husky"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.5",
"@vitest/ui": "^4.1.5",
"dpdm": "^4.0.1",
"husky": "^9.1.7",
"knip": "6.16.1",
"lint-staged": "^17.0.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=22.22.2"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"biome check --write --no-errors-on-unmatched",
"biome format --write --no-errors-on-unmatched"
]
}
}