package.json•3.05 kB
{
"name": "sub-agents-mcp",
"version": "0.1.5",
"mcpName": "io.github.shinpr/sub-agents-mcp",
"description": "MCP server for delegating tasks to specialized AI assistants in Cursor and other tools",
"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",
"llm",
"cli",
"agent-orchestration",
"typescript"
],
"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 && tsc-alias -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:unused": "ts-prune --project tsconfig.json --ignore 'src/index.ts|__tests__|test|vitest'",
"check:deps": "madge --circular --extensions ts src",
"check:deps:graph": "madge --extensions ts --image graph.svg src",
"check:all": "npm run check && npm run lint && npm run format:check && npm run check:unused && npm run check:deps && 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.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@testing-library/jest-dom": "^6.6.3",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"c8": "^10.1.3",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"madge": "^8.0.0",
"ts-node": "^10.9.1",
"ts-prune": "^0.10.3",
"tsc-alias": "^1.8.7",
"tsx": "^4.19.4",
"typescript": "^5.0.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"biome check --write --no-errors-on-unmatched",
"biome format --write --no-errors-on-unmatched"
]
}
}