-
-
Notifications
You must be signed in to change notification settings - Fork 225
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.49 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.49 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
{
"name": "mcpjam-workspace",
"private": true,
"workspaces": [
"sdk",
"cli",
"mcpjam-inspector",
"design-system",
"soundcheck",
"mcp"
],
"scripts": {
"build": "npm run build -w @mcpjam/sdk && npm run build -w @mcpjam/cli && npm run build -w @mcpjam/inspector",
"build:packages": "npm run build -w @mcpjam/sdk && npm run build -w @mcpjam/cli",
"build:inspector": "npm run build -w @mcpjam/inspector",
"typecheck": "npm run typecheck -w @mcpjam/sdk && npm run build -w @mcpjam/sdk && npm run typecheck -w @mcpjam/cli && npm run typecheck -w @mcpjam/design-system && npm run typecheck -w @mcpjam/mcp",
"check:mcp-v1-runtime-imports": "! rg -n '@modelcontextprotocol/sdk' sdk/src cli/src mcpjam-inspector/client/src mcpjam-inspector/server -g '!**/dist/**'",
"test": "npm run check:mcp-v1-runtime-imports && npm run test:ordered",
"test:ordered": "npm run test -w @mcpjam/sdk && npm run test:packaging -w @mcpjam/sdk && npm run test -w @mcpjam/cli && npm run test -w @mcpjam/design-system && npm run test -w @mcpjam/inspector && npm run test -w @mcpjam/mcp && npm run typecheck -w @mcpjam/mcp",
"verify": "npm run typecheck && npm run test && npm run build:inspector",
"release:status": "changeset status",
"release:version": "changeset version",
"release:publish": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@types/dagre": "^0.7.54"
},
"dependencies": {
"react-force-graph-2d": "^1.29.1"
}
}