@noanswer/context-compose
Version:
Orchestrate complex AI interactions with Context Compose. A powerful CLI and server for building, validating, and managing context for large language models using the Model Context Protocol (MCP).
73 lines • 2.05 kB
JSON
{
"name": "@noanswer/context-compose",
"version": "1.8.6",
"description": "Orchestrate complex AI interactions with Context Compose. A powerful CLI and server for building, validating, and managing context for large language models using the Model Context Protocol (MCP).",
"type": "module",
"main": "dist/index.js",
"bin": {
"context-compose": "dist/src/cli/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weproud/context-compose.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"context-compose",
"typescript",
"fastmcp",
"cli",
"automation",
"workflow"
],
"author": "noanswer",
"license": "MIT",
"bugs": {
"url": "https://github.com/weproud/context-compose/issues"
},
"homepage": "https://github.com/weproud/context-compose#readme",
"files": [
"assets/**",
".cursor/**",
"README-task-master.md",
"dist/**"
],
"dependencies": {
"commander": "^11.1.0",
"fastmcp": "^2.2.1",
"fs-extra": "^11.3.0",
"inquirer": "^12.6.3",
"mustache": "^4.2.0",
"yaml": "^2.8.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@release-it/conventional-changelog": "^10.0.1",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.8",
"@types/mustache": "^4.2.6",
"@types/node": "^22.15.29",
"@vitest/coverage-v8": "^3.2.3",
"memfs": "^4.17.2",
"release-it": "^19.0.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.2.3"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli/index.ts",
"test": "vitest run",
"check": "biome check src mcp-server",
"check:fix": "biome check --write src mcp-server",
"type-check": "tsc --noEmit",
"release": "pnpm type-check && pnpm test && pnpm build && release-it",
"pre-npm-publish": "pnpm type-check && pnpm test && pnpm build",
"npm-publish": "pnpm pre-npm-publish && pnpm publish --access public"
}
}