package.json•1.76 kB
{
"name": "nostr-mcp-server",
"version": "2.0.0",
"description": "A Model Context Protocol (MCP) server that provides Nostr capabilities to LLMs like Claude",
"main": "build/index.js",
"type": "module",
"bin": {
"nostr-mcp-server": "./build/index.js"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config=jest.config.cjs --forceExit",
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"start": "node build/index.js",
"prerelease": "npm test && npm run build",
"release:patch": "npm run prerelease && npm version patch",
"release:minor": "npm run prerelease && npm version minor",
"release:major": "npm run prerelease && npm version major"
},
"files": [
"build"
],
"keywords": [
"nostr",
"mcp",
"model-context-protocol",
"claude",
"llm"
],
"author": "Austin Kelsay <austinkelsay@protonmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/AustinKelsay/nostr-mcp-server.git"
},
"bugs": {
"url": "https://github.com/AustinKelsay/nostr-mcp-server/issues"
},
"homepage": "https://github.com/AustinKelsay/nostr-mcp-server#readme",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.0",
"@noble/curves": "^1.8.2",
"@noble/hashes": "^1.7.2",
"@scure/base": "^1.2.4",
"@types/node-fetch": "^2.6.12",
"light-bolt11-decoder": "^3.2.0",
"node-fetch": "^3.3.2",
"snstr": "^0.1.0",
"ws": "^8.16.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.11",
"@types/ws": "^8.5.10",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"typescript": "^5.8.2"
}
}