30 lines
723 B
JSON
30 lines
723 B
JSON
{
|
|
"name": "@agent-bounty/mcp-server",
|
|
"version": "0.1.0",
|
|
"description": "Agent Bounty Monetization MCP Server",
|
|
"private": true,
|
|
"type": "module",
|
|
"bin": {
|
|
"agent-bounty-mcp": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --project tsconfig.json",
|
|
"dev": "tsc --project tsconfig.json --watch",
|
|
"test": "vitest run",
|
|
"start": "node ./dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@agent-bounty/contracts": "workspace:*",
|
|
"@modelcontextprotocol/sdk": "^1.5.0",
|
|
"dotenv": "^17.4.2",
|
|
"express": "^5.2.1",
|
|
"zod": "^4.4.3",
|
|
"zod-to-json-schema": "^3.25.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^5.0.6",
|
|
"@types/node": "^20",
|
|
"typescript": "^5"
|
|
}
|
|
}
|