-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 961 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 961 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "@biochain/flow",
"private": true,
"version": "0.1.0",
"description": "MCP Server & Workflow Framework for KeyApp",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts",
"./mcp": "./src/common/mcp/base-mcp.ts",
"./workflow": "./src/common/workflow/base-workflow.ts",
"./preferences": "./src/common/preferences.ts",
"./context": "./src/common/async-context.ts"
},
"scripts": {
"dev": "tsc --noEmit --watch",
"typecheck:run": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.24.0"
},
"devDependencies": {
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"peerDependencies": {
"zod": "^3.0.0"
},
"files": [
"dist",
"src"
],
"keywords": [
"mcp",
"workflow",
"ai",
"framework"
],
"license": "MIT"
}