package.json•2.04 kB
{
"name": "@haakco/mcp-utils",
"version": "1.0.0",
"description": "Production-ready shared utilities and patterns for Model Context Protocol (MCP) servers",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc -b tsconfig.build.json",
"dev": "tsc -b tsconfig.build.json --watch",
"clean": "rm -rf dist",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"release": "npm run prepublishOnly && npm publish"
},
"keywords": [
"mcp",
"model-context-protocol",
"utilities",
"shared",
"typescript",
"claude",
"ai",
"tools",
"server",
"framework"
],
"author": {
"name": "HaakCo",
"url": "https://github.com/haakco"
},
"license": "MIT",
"homepage": "https://github.com/haakco/mcp-utils#readme",
"repository": {
"type": "git",
"url": "https://github.com/haakco/mcp-utils.git"
},
"bugs": {
"url": "https://github.com/haakco/mcp-utils/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"axios": "^1.9.0",
"debug": "^4.4.1",
"zod": "^3.25.50"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.29",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.1"
},
"files": [
"dist/**/*"
],
"engines": {
"node": ">=18.0.0"
}
}