package.json•1.92 kB
{
"name": "@codewithdan/marvel-mcp",
"version": "1.8.5",
"description": "Marvel APIs MCP Server demo",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"bin": {
"marvel-mcp": "./dist/index.js"
},
"author": {
"name": "Dan Wahlin",
"url": "https://github.com/danwahlin"
},
"repository": {
"type": "git",
"url": "https://github.com/danwahlin/marvel-mcp"
},
"homepage": "https://github.com/danwahlin/marvel-mcp",
"bugs": {
"url": "https://github.com/danwahlin/marvel-mcp/issues"
},
"type": "module",
"main": "index.js",
"engines": {
"node": ">=20.11.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"genai",
"api",
"marvel",
"comics"
],
"release": {
"extends": "semantic-release-npm-github",
"branches": "main"
},
"scripts": {
"start": "tsx ./src/index.ts",
"start:http": "tsx ./src/server.ts",
"build": "npx tsc && chmod +x dist/index.js",
"watch": "npx tsc --watch",
"dev": "tsc && concurrently \"tsc --watch\" \"nodemon dist/index.js\"",
"dev:http": "npx tsc && concurrently \"npx tsc --watch\" \"nodemon dist/server.js\"",
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
"release:check": "semantic-release --dry-run"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.1",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"pino": "^9.7.0",
"pino-pretty": "^13.1.1",
"zod": "^3.24.3",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^24.1.0",
"concurrently": "^9.2.0",
"nodemon": "^3.1.10",
"semantic-release": "^24.2.7",
"semantic-release-npm-github": "^5.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
},
"files": [
"dist/**/*"
]
}