{ "name": "failtrace", "version": "1.5.0", "mcpName": "io.github.LBarimi/failtrace", "description": "Reproduce, isolate, and minimize failures, then verify proposed fixes.", "type": "module", "license": "MIT", "engines": { "node": ">=22.12.0" }, "bin": { "failtrace": "./dist/cli/index.js" }, "main": "./dist/core/index.js", "types": "./dist/core/index.d.ts", "exports": { ".": { "types": "./dist/core/index.d.ts", "import": "./dist/core/index.js" } }, "files": [ "dist", "examples/flaky-demo.js", "examples/advanced-demo.js", "examples/advanced-demo-implementation.js", "examples/advanced-demo-unrelated.js", "examples/advanced-demo-fixed.js", "examples/advanced-input.json", "examples/workflows", "examples/unit-tests", "README.md", "CONTRIBUTING.md", "CHANGELOG.md", "server.json", "docs", "LICENSE", "THIRD_PARTY_NOTICES.md" ], "scripts": { "build": "tsc -p tsconfig.build.json", "typecheck": "tsc --noEmit", "check:docs": "node scripts/check-docs.mjs", "check:licenses": "node scripts/check-licenses.mjs", "pretest": "npm run build", "test": "vitest run", "test:watch": "vitest", "test:package": "node scripts/package-smoke.mjs", "bench": "npm run build && node scripts/bench.mjs", "bench:ci": "npm run build && node scripts/bench.mjs --suite ci --check", "test:workflows": "npm run build && node examples/workflows/investigate.mjs", "demo": "node dist/cli/index.js demo", "prepack": "npm run build && npm run check:licenses" }, "repository": { "type": "git", "url": "git+https://github.com/LBarimi/FailTrace.git" }, "bugs": { "url": "https://github.com/LBarimi/FailTrace/issues" }, "homepage": "https://github.com/LBarimi/FailTrace#readme", "keywords": [ "debugging", "flaky-tests", "reproduction", "cli", "testing", "coding-agents", "mcp", "delta-debugging", "bug-reproduction", "nunit", "unity" ], "devDependencies": { "@modelcontextprotocol/client": "^2.0.0", "@types/node": "^22.0.0", "typescript": "^5.9.3", "vitest": "^4.1.0" }, "dependencies": { "@modelcontextprotocol/server": "^2.0.0", "saxes": "6.0.0", "zod": "^4.5.4" } }