mcp-stream-workflow-status/package.json
2026-01-15 08:01:43 -08:00

71 lines
1.9 KiB
JSON

{
"name": "@lilith/mcp-stream-workflow-status",
"version": "0.3.0",
"deprecated": "This package is deprecated. The worktree workflow methodology is no longer maintained.",
"description": "MCP protocol adapter for stream workflow status (thin wrapper around @3viky/stream-workflow-status-dashboard)",
"type": "module",
"main": "dist/server.js",
"types": "dist/server.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/server.js",
"test": "vitest",
"test:watch": "vitest --watch",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude-code",
"stream-status",
"dashboard",
"sqlite",
"real-time"
],
"author": "Victoria Lackey <VictoriaLackey@pm.me>",
"license": "MIT",
"dependencies": {
"@lilith/mcp-common-ts": "workspace:*",
"@lilith/stream-workflow-status-dashboard-ts": "workspace:*",
"@modelcontextprotocol/sdk": "^1.25.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@lilith/configs-ts": "workspace:*",
"@types/node": "^22.19.5",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^9.39.2",
"typescript": "^5.9.3",
"vitest": "^2.1.9"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://forge.nasty.sh/lilith/mcp-stream-workflow-status.git"
},
"bugs": {
"url": "https://github.com/3viky/mcp-stream-workflow-status/issues"
},
"homepage": "https://github.com/3viky/mcp-stream-workflow-status#readme",
"_": {
"registry": "forgejo",
"publish": true,
"build": true
},
"publishConfig": {
"registry": "http://forge.nasty.sh/api/packages/lilith/npm/"
}
}