forked from TensorBlock/awesome-mcp-servers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.03 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
{
"name": "awesome-mcp-servers",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc -p tsconfig.base.json",
"test": "vitest run --passWithNoTests",
"typecheck": "tsc -p tsconfig.base.json --noEmit",
"catalog:build": "tsx packages/catalog-builder/src/cli.ts",
"catalog:health": "node .github/scripts/check-catalog-health.mjs",
"profiles:build": "tsx packages/profile-renderer/src/cli.ts",
"config:generate": "tsx packages/config-generator/src/cli.ts",
"registry:mcp": "tsx packages/registry-mcp/src/server.ts",
"registry:api": "node dist-ts/packages/registry-api/src/server.js",
"registry:api:dev": "tsx packages/registry-api/src/server.ts",
"start": "npm run registry:api"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"ajv": "^8.0.0",
"ajv-formats": "^3.0.1",
"zod": "^3.0.0"
}
}