MCP Terminal Server

  • js
{ "private": true, "scripts": { "preinstall": "npx only-allow pnpm", "build": "pnpm install && pnpm build:libs && pnpm build:docsnippets && pnpm build:testapps", "build:libs": "pnpm build:core && pnpm build:genkit && pnpm build:noncore ", "build:core": "pnpm -r --workspace-concurrency 1 -F core -F ai -F flow build", "build:genkit": "pnpm -F genkit build", "build:noncore": "pnpm -r --workspace-concurrency 0 -F \"./plugins/**\" build", "build:testapps": "pnpm -r --workspace-concurrency 0 -F \"./testapps/**\" build", "build:docsnippets": "cd doc-snippets && pnpm install && pnpm build", "pack:all": "(mkdir ../dist || true) && npm-run-all pack:core pack:ai pack:genkit pack:plugins", "pack:core": "cd core && pnpm pack --pack-destination ../../dist", "pack:ai": "cd ai && pnpm pack --pack-destination ../../dist", "pack:genkit": "cd genkit && pnpm pack --pack-destination ../../dist", "pack:plugins": "for i in plugins/*/; do cd $i && pnpm pack --pack-destination ../../../dist && cd ../..; done", "test:all": "pnpm -r --workspace-concurrency 0 -F \"./(ai|core|plugins|genkit)/**\" test && pnpm test:esm", "test:esm": "cd testapps/esm && pnpm test", "gendocs": "pnpm build && pnpm typedoc", "typedoc-html": "typedoc --sortEntryPoints false --options typedoc.json" }, "devDependencies": { "npm-run-all": "^4.1.5", "only-allow": "^1.2.1", "typescript": "^4.9.0", "typedoc": "^0.27.5", "typedoc-plugin-markdown": "^4.3.2", "typedoc-plugin-zod": "^1.3.1", "typedoc-github-theme": "^0.2.0", "tsx": "^4.19.2" }, "pnpm": { "overrides": { "cross-spawn": "^7.0.5" } }, "packageManager": "pnpm@10.2.0+sha256.72f1630812107c8723eb5be4517725f3e13f09cfd8f71571cf29f23ce318bdb7" }