{
"name": "mcp-cpp-e2e-tests",
"version": "1.0.0",
"type": "module",
"description": "End-to-end testing framework for C++ MCP server",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:framework": "vitest run src/framework/__tests__",
"test:e2e": "vitest run src/tests",
"test:full": "./scripts/run-tests.sh",
"inspect": "tsx scripts/inspect-test-dirs.ts",
"inspect:verbose": "tsx scripts/inspect-test-dirs.ts --verbose",
"inspect:logs": "tsx scripts/inspect-test-dirs.ts --verbose --logs",
"cleanup": "tsx scripts/cleanup-test-folders.ts cleanup",
"cleanup:dry": "tsx scripts/cleanup-test-folders.ts cleanup --dry-run",
"cleanup:inspect": "tsx scripts/cleanup-test-folders.ts inspect",
"cleanup:inspect:verbose": "tsx scripts/cleanup-test-folders.ts inspect --verbose",
"cleanup:legacy": "tsx scripts/inspect-test-dirs.ts --clean",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"validate": "npm run lint && npm run format:check && npm run test:framework && npm run test:e2e"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.0.10",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"ajv": "^8.17.1",
"dotenv": "^16.4.5",
"eslint": "^9.30.1",
"fs-extra": "^11.3.0",
"prettier": "^3.6.2",
"tsx": "^4.19.2",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.0"
}
}