mirror of
https://github.com/modelcontextprotocol/servers.git
synced 2026-04-18 15:54:09 +02:00
- Replace Jest dependencies with Vitest and @vitest/coverage-v8 - Update test scripts to use 'vitest run --coverage' - Create vitest.config.ts for both servers with node environment and coverage settings - Update all test files: - Change imports from '@jest/globals' to 'vitest' - Replace jest.mock() with vi.mock() - Replace jest.fn() with vi.fn() - Update mock clearing/restoring to use vi methods - Remove jest.config.cjs files - All 151 tests passing (24 in sequentialthinking, 127 in filesystem) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
35 lines
943 B
JSON
35 lines
943 B
JSON
{
|
|
"name": "@modelcontextprotocol/server-sequential-thinking",
|
|
"version": "0.6.2",
|
|
"description": "MCP server for sequential thinking and problem solving",
|
|
"license": "MIT",
|
|
"author": "Anthropic, PBC (https://anthropic.com)",
|
|
"homepage": "https://modelcontextprotocol.io",
|
|
"bugs": "https://github.com/modelcontextprotocol/servers/issues",
|
|
"type": "module",
|
|
"bin": {
|
|
"mcp-server-sequential-thinking": "dist/index.js"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc && shx chmod +x dist/*.js",
|
|
"prepare": "npm run build",
|
|
"watch": "tsc --watch",
|
|
"test": "vitest run --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.19.1",
|
|
"chalk": "^5.3.0",
|
|
"yargs": "^17.7.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22",
|
|
"@types/yargs": "^17.0.32",
|
|
"@vitest/coverage-v8": "^2.1.8",
|
|
"shx": "^0.3.4",
|
|
"typescript": "^5.3.3",
|
|
"vitest": "^2.1.8"
|
|
}
|
|
} |