-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.97 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
{
"name": "mcp-workspace",
"version": "0.0.0",
"private": true,
"description": "NestJS 12 runtime, server, client, and gateway modules for Model Context Protocol v2.",
"license": "BSD-3-Clause",
"author": "nestm",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/nestm-dev/mcp.git"
},
"homepage": "https://github.com/nestm-dev/mcp#readme",
"bugs": {
"url": "https://github.com/nestm-dev/mcp/issues"
},
"engines": {
"node": ">=22.13.0"
},
"packageManager": "pnpm@11.24.0",
"scripts": {
"dev": "pnpm --parallel --stream --filter \"./apps/*\" run dev",
"dev:api": "pnpm --filter @nestm/mcp-control-plane-api run dev",
"dev:web": "pnpm --filter @nestm/mcp-control-plane-web run dev",
"build": "pnpm --filter \"./packages/*\" run build && pnpm --filter \"./apps/*\" run build",
"build:watch": "pnpm --parallel --filter \"./packages/*\" --filter @nestm/mcp-control-plane-api run build:watch",
"clean": "node scripts/clean.mjs",
"lint": "oxlint --type-aware . && pnpm --filter @nestm/mcp-control-plane-web run lint",
"lint:fix": "oxlint --type-aware --fix .",
"format": "prettier --write . --ignore-unknown",
"format:check": "prettier --check . --ignore-unknown",
"typecheck": "tsc -b && pnpm --filter @nestm/mcp-control-plane-web run typecheck",
"typecheck:clean": "tsc -b --clean",
"check": "pnpm run lint && pnpm run format:check && pnpm run typecheck",
"test": "vitest run && pnpm --filter @nestm/mcp-control-plane-web run test",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage && pnpm --filter @nestm/mcp-control-plane-web run test:coverage",
"verify:pack": "pnpm run build && pnpm --filter \"./packages/*\" exec publint --strict && node scripts/check-package-dependencies.mjs",
"verify:attw": "pnpm run build && for package in packages/*; do pnpm exec attw --pack \"$package\" --profile esm-only || exit 1; done",
"verify:apps": "pnpm --filter @nestm/mcp-control-plane-api run smoke:dist",
"verify": "pnpm run check && pnpm run test && pnpm run verify:pack && pnpm run verify:apps && pnpm run verify:attw",
"changeset": "changeset",
"release:version": "node scripts/version.mjs",
"release": "node scripts/publish.mjs"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.5",
"@changesets/cli": "3.0.1",
"@modelcontextprotocol/client": "2.0.0",
"@modelcontextprotocol/core": "2.0.0",
"@modelcontextprotocol/node": "2.0.0",
"@modelcontextprotocol/server": "2.0.0",
"@nestjs/common": "12.0.1",
"@nestjs/core": "12.0.1",
"@nestjs/platform-express": "12.0.1",
"@nestjs/platform-fastify": "12.0.1",
"@nestjs/testing": "12.0.1",
"@types/node": "26.4.0",
"@vitest/coverage-v8": "4.1.11",
"express": "5.2.1",
"fastify": "5.12.1",
"oxlint": "1.80.0",
"oxlint-tsgolint": "7.0.2001",
"prettier": "3.9.6",
"publint": "0.3.24",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.2",
"supports-color": "11.0.0",
"tsdown": "0.22.14",
"typescript": "7.0.2",
"vitest": "4.1.11",
"zod": "4.4.3"
}
}