package.json•1.11 kB
{
"name": "@minimind-org/mcp-server-typescript-template",
"version": "0.1.0",
"description": "MCP server template for typescript",
"license": "MIT",
"author": "Minimind (https://minimind.org)",
"homepage": "https://minimind.org",
"bugs": "https://github.com/minimind-org/mcp-server-typescript-template/issues",
"bin": {
"mcp-server-example": "dist/index.js"
},
"files": [
"dist"
],
"type": "commonjs",
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"start": "node dist/index.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"dev": "tsx index.ts",
"test": "jest",
"inspect": "npx @modelcontextprotocol/inspector ./dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"@types/node-fetch": "^2.6.12",
"axios": "^1.8.4",
"zod": "^3.24.2",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.14",
"jest": "^29.7.0",
"shx": "^0.3.4",
"ts-jest": "^29.3.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
}
}