-
-
Notifications
You must be signed in to change notification settings - Fork 260
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 3.18 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 3.18 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
{
"name": "mcpjam-workspace",
"private": true,
"workspaces": [
"sdk",
"cli",
"mcpjam-inspector",
"design-system",
"chat-ui",
"widget-react",
"soundcheck",
"mcp",
"slack-app",
"surface-core",
"discord-app"
],
"scripts": {
"build": "npm run build -w @mcpjam/sdk && npm run build -w @mcpjam/cli && npm run build -w @mcpjam/chat-ui && npm run build -w @mcpjam/widget-react && 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/chat-ui && npm run typecheck -w @mcpjam/widget-react && 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 mcp/src -g '!**/dist/**' -g '!**/*.bundled.ts' -g '!**/*.generated.ts' -g '!mcp/src/ui/**'",
"check:bundled-runtime-paths": "node scripts/check-bundled-runtime-paths.mjs",
"check:platform-runtime-safety": "! rg -n '[\"\\x27]node:|process\\.env' sdk/src/platform",
"check:platform-runtime-safety:dist": "test -d sdk/dist/platform && ! rg -n '[\"\\x27]node:|process\\.env' sdk/dist/platform -g '!*.map'",
"test": "npm run check:mcp-v1-runtime-imports && npm run check:bundled-runtime-paths && npm run check:platform-runtime-safety && npm run build -w @mcpjam/sdk && npm run check:platform-runtime-safety:dist && npm run test:parallel && npm run test:packaging -w @mcpjam/sdk",
"test:parallel": "concurrently -n sdk,cli,design,chatui,widget,inspector,mcp,slack,core,discord -c blue,green,yellow,white,red,magenta,cyan,gray,black,green --kill-others-on-fail \"npm run test -w @mcpjam/sdk\" \"npm run test -w @mcpjam/cli\" \"npm run test -w @mcpjam/design-system\" \"npm run test -w @mcpjam/chat-ui\" \"npm run test -w @mcpjam/widget-react\" \"npm run test -w @mcpjam/inspector\" \"npm run test:fast -w @mcpjam/mcp && npm run typecheck:fast -w @mcpjam/mcp\" \"npm run verify -w @mcpjam/slack-app\" \"npm run verify -w @mcpjam/surface-core\" \"npm run verify -w @mcpjam/discord-app\"",
"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/chat-ui && npm run test -w @mcpjam/widget-react && npm run test -w @mcpjam/inspector && npm run test -w @mcpjam/mcp && npm run typecheck -w @mcpjam/mcp && npm run verify -w @mcpjam/slack-app",
"verify": "npm run typecheck && npm run test && npm run build:inspector",
"docs:sync-tokens": "node scripts/sync-docs-tokens.mjs",
"docs:check-tokens": "node scripts/sync-docs-tokens.mjs --check",
"release:status": "changeset status",
"release:version": "changeset version",
"release:publish": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@types/dagre": "^0.7.54",
"concurrently": "^9.1.0"
},
"dependencies": {
"react-force-graph-2d": "^1.29.1"
}
}