package.json•855 B
{
"name": "@c3budiman/ping",
"version": "1.0.0",
"description": "MCP server for pinging websites",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-ping": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && node scripts/add-shebang.js",
"prepublishOnly": "npm run build",
"start": "node dist/index.js",
"dev": "tsx src/index.ts"
},
"keywords": [
"mcp",
"ping",
"network",
"model-context-protocol",
"mcp-server"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}