mirror of
https://github.com/aljazceru/dvmcp.git
synced 2025-12-17 05:14:24 +01:00
44 lines
1004 B
JSON
44 lines
1004 B
JSON
{
|
|
"name": "@dvmcp/bridge",
|
|
"version": "0.1.11",
|
|
"description": "Bridge connecting MCP servers to Nostr's DVM ecosystem",
|
|
"module": "index.ts",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"bin": {
|
|
"dvmcp-bridge": "./cli.ts"
|
|
},
|
|
"files": [
|
|
"**/*.ts",
|
|
"**/*.js",
|
|
"!**/*.test.ts",
|
|
"!**/*.test.js",
|
|
"config.example.yml"
|
|
],
|
|
"scripts": {
|
|
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
|
|
"dev": "bun --watch index.ts",
|
|
"start": "bun run cli.ts",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "bun run typecheck && bun run format",
|
|
"test": "bun test",
|
|
"prepublishOnly": "bun run lint && bun run test"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.4.1",
|
|
"dotenv": "^16.4.7",
|
|
"nostr-tools": "^2.10.4",
|
|
"yaml": "^2.7.0",
|
|
"@dvmcp/commons": "^0.1.2"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|