package.json•896 B
{
"name": "rest-to-postman",
"version": "1.0.2",
"description": "Convert REST API endpoints to Postman collections",
"module": "index.ts",
"type": "module",
"bin": {
"rest-to-postman": "./dist/run.js"
},
"scripts": {
"build": "bun build --outfile=dist/run.js --target=node ./src/mcp.ts",
"dev": "bun run src/mcp.ts",
"startSSE": "ts-node-esm src/mcp.ts --sse"
},
"devDependencies": {
"@types/bun": "latest",
"@types/express": "^5.0.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.9.0",
"axios": "^1.8.4",
"dotenv": "^16.4.7"
},
"keywords": [
"rest",
"postman",
"api",
"collection",
"converter"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/rest-to-postman.git"
}
}