package.jsonโข1.26 kB
{
"name": "@context-pods/testing",
"version": "0.2.0",
"description": "Comprehensive testing and validation framework for Context-Pods MCP servers",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc -b",
"test": "echo \"Testing package tests temporarily disabled - framework needs implementation updates\"",
"test:unit": "vitest run",
"test:watch": "vitest",
"type-check": "tsc --noEmit",
"lint": "eslint src/**/*.ts",
"format": "prettier --write 'src/**/*.ts'"
},
"keywords": [
"mcp",
"testing",
"validation",
"model-context-protocol",
"test-framework"
],
"author": "Context-Pods",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/conorluddy/ContextPods.git"
},
"dependencies": {
"@context-pods/core": "*",
"@modelcontextprotocol/sdk": "^1.17.4",
"zod": "^4.1.1",
"execa": "^9.6.0",
"p-limit": "^7.1.0"
},
"devDependencies": {
"@types/node": "^24.3.0",
"memfs": "^4.38.1",
"vitest": "^3.2.4"
},
"publishConfig": {
"access": "public"
}
}