mcp-stream-workflow/package.json
Lilith e9c802333e chore: add publishConfig to prevent public npm publishing
All @lilith/* packages should publish to forge.nasty.sh only.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-03 00:42:31 -08:00

77 lines
1.9 KiB
JSON

{
"name": "@lilith/mcp-stream-workflow",
"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": "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://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/"
}
}