-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 756 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "@m2ux/workflow-server",
"version": "0.1.0",
"description": "MCP server for AI agent workflow orchestration",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:schemas": "tsx scripts/generate-schemas.ts",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.19.30",
"ajv": "^8.17.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.6.1"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"@toon-format/toon": "^2.1.0",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.4"
}
}