@anyshift/mcp-tools-common
Version:
Reusable JQ tool and file writing utilities for MCP servers
64 lines • 1.4 kB
JSON
{
"name": "@anyshift/mcp-tools-common",
"description": "Reusable JQ tool and file writing utilities for MCP servers",
"repository": {
"type": "git",
"url": "https://github.com/anyshift-io/mcp-tools-common.git"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"mcp",
"jq",
"json",
"file-writer",
"model-context-protocol"
],
"author": "Anyshift",
"license": "MIT",
"peerDependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"dependencies": {
"zod": "^3.24.0"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^3.0.0",
"eslint": "^9.0.0",
"prettier": "^3.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^3.0.0"
},
"publishConfig": {
"access": "public"
},
"version": "0.3.2",
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
}
}