mirror of
https://github.com/BloopAI/dev-manager-mcp.git
synced 2026-08-23 11:58:33 +00:00
Implement CI and build releases Please copy the pre-release and logic that allows us to use JS + NPX to distribute the rust binary, with code signing on mac. You can view some examples in a different repo at /Users/lkw/Documents/repos/vibe-kanban - .github/workflows/pre-release.yml - .github/workflows/publish.yml - npx-cli/bin/cli.js - npx-cli/package.json
28 lines
463 B
JSON
28 lines
463 B
JSON
{
|
|
"name": "dev-manager-mcp",
|
|
"private": false,
|
|
"version": "0.1.0",
|
|
"main": "index.js",
|
|
"bin": {
|
|
"dev-manager-mcp": "bin/cli.js"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"dev-server",
|
|
"daemon"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"description": "MCP Dev Server Manager - A daemon for managing development servers",
|
|
"dependencies": {
|
|
"adm-zip": "^0.5.16"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"bin"
|
|
],
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|