Files
dvmcp/packages/dvmcp-bridge/package.json
2025-03-19 17:31:33 +01:00

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"
}
}