package.json•1.26 kB
{
"name": "@fiveohhwon/workflows-mcp",
"version": "0.3.3",
"description": "A Model Context Protocol (MCP) implementation for workflow management and automation.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"workflows-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "echo \"No tests yet\"",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FiveOhhWon/workflows-mcp.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"workflow",
"automation",
"ai",
"llm"
],
"author": "FiveOhhWon",
"license": "MIT",
"bugs": {
"url": "https://github.com/FiveOhhWon/workflows-mcp/issues"
},
"homepage": "https://github.com/FiveOhhWon/workflows-mcp#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@types/uuid": "^10.0.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"uuid": "^11.1.0",
"zod": "^3.25.58"
}
}