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

77 lines
1.9 KiB
JSON

{
"name": "@lilith/mcp-stream-workflow-ts",
"version": "0.2.0",
"deprecated": "This package is deprecated. The worktree workflow methodology is no longer maintained.",
"description": "AI-powered worktree workflow automation MCP server",
"type": "module",
"main": "dist/server.js",
"types": "dist/server.d.ts",
"files": [
"dist",
"prompts",
"templates",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:tool": "vitest --run --reporter=verbose",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude-code",
"worktree",
"workflow",
"automation",
"git",
"merge",
"conflict-resolution"
],
"author": "Victoria Lackey <VictoriaLackey@pm.me>",
"license": "MIT",
"dependencies": {
"@lilith/mcp-common-ts": "workspace:*",
"@modelcontextprotocol/sdk": "^1.25.2",
"simple-git": "^3.30.0",
"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.git"
},
"bugs": {
"url": "https://github.com/3viky/mcp-stream-workflow/issues"
},
"homepage": "https://github.com/3viky/mcp-stream-workflow#readme",
"_": {
"registry": "forgejo",
"publish": true,
"build": true
},
"publishConfig": {
"registry": "http://forge.nasty.sh/api/packages/lilith/npm/"
}
}