package.json•776 B
{
"name": "@devstacks/id-generator-mcp",
"version": "0.1.5",
"description": "MCP server for generating IDs with different algorithms",
"author": "Moacir Braga <me@moacirbrg.com>",
"license": "MIT",
"type": "module",
"main": "build/index.js",
"bin": {
"id-generator": "./build/index.js"
},
"scripts": {
"build": "tsc && chmod +x build/index.js",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"id",
"generator",
"cuid2",
"uuid"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.0",
"@paralleldrive/cuid2": "^2.2.2",
"nanoid": "^5.1.5",
"ulid": "^3.0.0",
"uuid": "^11.1.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/node": "^22.15.3",
"typescript": "^5.8.3"
}
}