🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
73 lines
1.7 KiB
JSON
73 lines
1.7 KiB
JSON
{
|
|
"name": "@3viky/mcp-stream-workflow",
|
|
"version": "0.2.0",
|
|
"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": {
|
|
"@3viky/mcp-common": "workspace:*",
|
|
"@modelcontextprotocol/sdk": "^1.24.3",
|
|
"simple-git": "^3.27.0",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.15.0",
|
|
"@typescript-eslint/parser": "^8.15.0",
|
|
"eslint": "^9.15.0",
|
|
"typescript": "^5.7.2",
|
|
"vitest": "^2.1.5",
|
|
"@vitest/coverage-v8": "^2.1.5",
|
|
"@lilith/configs": "workspace:*"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"pnpm": ">=8.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/3viky/mcp-stream-workflow.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/3viky/mcp-stream-workflow/issues"
|
|
},
|
|
"homepage": "https://github.com/3viky/mcp-stream-workflow#readme",
|
|
"_": {
|
|
"registry": "github",
|
|
"publish": false,
|
|
"build": true
|
|
}
|
|
}
|