-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.52 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.52 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "mcpgraph",
"version": "0.1.32",
"description": "MCP server that executes directed graphs of MCP server calls",
"main": "dist/main.js",
"type": "module",
"exports": {
".": "./dist/api.js",
"./api": "./dist/api.js",
"./types": "./dist/types/config.js"
},
"types": "./dist/api.d.ts",
"bin": {
"mcpgraph": "./dist/main.js",
"mcpgraphtoolkit": "./dist/toolkit-main.js"
},
"files": [
"dist",
"examples",
"docs",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"dev": "tsx src/main.ts",
"watch": "tsc --watch",
"test": "tsx --test --test-timeout=90000 tests/*.test.ts",
"test:timing": "npm test > /tmp/test-output.txt 2>&1 && ./scripts/test-timing.sh /tmp/test-output.txt",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"graph",
"workflow",
"orchestration",
"yaml",
"jsonata",
"json-logic"
],
"author": "TeamSpark, LLC <support@teamspark.ai>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TeamSparkAI/mcpGraph.git"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.0",
"sharp": "^0.34.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"js-yaml": "^4.1.0",
"json-logic-js": "^2.0.2",
"jsonata": "^2.0.3",
"zod": "^3.22.4"
}
}