package.json•1.86 kB
{
"name": "mcp-mcp",
"version": "1.0.0",
"description": "MCP server for Model Context Protocol operations",
"main": "dist/index.js",
"type": "module",
"bin": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"test": "vitest run --coverage",
"test:watch": "vitest --watch",
"test:ci": "vitest run --coverage --reporter=json --reporter=default",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"prepare": "husky",
"prepublishOnly": "npm test && npm run build",
"start": "node dist/index.js"
},
"keywords": ["mcp", "model-context-protocol", "mcp-server", "typescript"],
"author": "Joseph Mearman",
"license": "CC-BY-NC-SA-4.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Mearman/mcp-mcp.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"provenance": true
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.map",
"!dist/**/*.test.*",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.25.51",
"zod-to-json-schema": "^3.24.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/node": "^22.13.2",
"@vitest/coverage-v8": "^2.1.8",
"husky": "^9.1.7",
"semantic-release": "^24.2.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18"
},
"packageManager": "yarn@4.9.1"
}