package.json•1.4 kB
{
"name": "random-org-mcp-server",
"version": "1.0.3",
"description": "MCP Server for api.random.org integration - Generate true random numbers, strings, UUIDs and more",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"random-org-mcp": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"README-zh.md",
"LICENSE",
".env.example"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon --exec ts-node --esm src/index.ts",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"random",
"api",
"random.org",
"true-random",
"uuid",
"generator"
],
"author": "",
"license": "MIT",
"homepage": "https://github.com/QianJue-CN/TRUERandomMCP#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/QianJue-CN/TRUERandomMCP.git"
},
"bugs": {
"url": "https://github.com/QianJue-CN/TRUERandomMCP/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.1",
"axios": "^1.11.0",
"dotenv": "^17.2.1"
},
"devDependencies": {
"@types/node": "^24.1.0",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}