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