mcpresso
Version:
TypeScript package for Model Context Protocol (MCP) utilities and tools
95 lines (94 loc) • 2.61 kB
JSON
{
"name": "mcpresso",
"version": "0.8.20",
"description": "TypeScript package for Model Context Protocol (MCP) utilities and tools",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"bin": {
"mcpresso": "dist/cli/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./server": {
"types": "./dist/server.d.ts",
"import": "./dist/server.js",
"require": "./dist/server.js"
}
},
"files": [
"dist/**/*",
"src/**/*",
"README.md"
],
"scripts": {
"prepublishOnly": "bun run build",
"build": "tsc && bun build ./src/index.ts --outdir ./dist --target node --format esm --outfile ./dist/index.bundle.js && bun build ./src/cli/index.ts --outdir ./dist/cli --target node --format esm --outfile ./dist/cli/index.bundle.js",
"dev": "bun build ./src/index.ts --outdir ./dist --watch --target node",
"clean": "rm -rf dist",
"test": "bun test",
"test:watch": "bun test --watch",
"test:e2e": "bun test test/e2e.test.ts",
"test:simple": "bun test test/simple-e2e.test.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"agent",
"tools",
"resources"
],
"author": "Granular Software",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/granular-software/mcpresso.git"
},
"bugs": {
"url": "https://github.com/granular-software/mcpresso/issues"
},
"homepage": "https://github.com/granular-software/mcpresso#readme",
"dependencies": {
"@hono/node-server": "^1.14.4",
"@modelcontextprotocol/sdk": "^1.13.1",
"@types/js-yaml": "^4.0.9",
"@vercel/client": "^15.3.13",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"cors": "^2.8.5",
"express-rate-limit": "^7.3.1",
"hono": "^4.8.2",
"inquirer": "^9.2.15",
"jose": "^5.6.3",
"js-yaml": "^4.1.0",
"mcpresso-oauth-server": "^1.2.8",
"openapi-types": "^12.1.3",
"pg": "^8.11.3",
"prettier": "^3.2.5",
"stripe": "^16.2.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@types/pg": "^8.10.9",
"@types/supertest": "^6.0.2",
"@types/swagger-parser": "^7.0.1",
"jest": "^29.5.0",
"supertest": "^7.1.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}