-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.24 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "onemcp",
"version": "0.2.1",
"description": "MCP Router System - Intelligent routing layer between MCP clients and multiple backend MCP servers",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"onemcp": "./dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest --run --coverage",
"test:property": "vitest --run property",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"typecheck": "tsc --noEmit",
"clean": "node -e \"require('fs').rmSync('dist', {recursive:true, force:true})\"",
"prepublishOnly": "npm run clean && npm run build",
"prepare": "husky"
},
"keywords": [
"mcp",
"model-context-protocol",
"router",
"middleware",
"ai",
"llm"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"ajv": "^8.12.0",
"eventsource": "^2.0.2",
"fastify": "^4.25.2",
"fs-extra": "^11.2.0",
"ink": "^4.4.1",
"ink-select-input": "^5.0.0",
"ink-text-input": "^5.0.1",
"node-fetch": "^3.3.2",
"pino": "^8.17.2",
"pino-pretty": "^10.3.1",
"react": "^18.2.0"
},
"devDependencies": {
"@types/eventsource": "^1.1.15",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vitest/coverage-v8": "^1.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"fast-check": "^3.15.0",
"husky": "^9.1.7",
"node-pty": "^1.1.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
}
}