package.json•1.63 kB
{
"name": "@programcomputer/nasa-mcp-server",
"version": "1.0.13",
"description": "Model Context Protocol (MCP) server for NASA APIs",
"main": "dist/index.js",
"files": [
"dist"
],
"bin": {
"nasa-mcp-server": "dist/index.js"
},
"scripts": {
"build": "npm install && tsc && shx chmod +x dist/*.js",
"start": "node dist/index.js",
"start:sse": "node dist/sse-server.js",
"dev": "tsx watch src/index.ts",
"dev:sse": "tsx watch src/sse-server.ts",
"lint": "eslint .",
"test": "jest",
"direct-test": "ts-node src/tests/direct-api-test.ts",
"custom-test": "ts-node src/tests/custom-client/nasa-mcp-test.ts",
"simple-test": "ts-node src/tests/custom-client/simple-test.ts"
},
"keywords": [
"nasa",
"api",
"mcp",
"typescript"
],
"author": "",
"license": "ISC",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProgramComputer/NASA-MCP-server.git"
},
"dependencies": {
"@anthropic-ai/sdk": "",
"@modelcontextprotocol/sdk": "^1.9.0",
"axios": "",
"cors": "",
"dotenv": "",
"express": "",
"zod": ""
},
"devDependencies": {
"@types/cors": "",
"@types/express": "",
"@types/jest": "",
"@types/node": "",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"jest": "",
"shx": "^0.4.0",
"ts-jest": "",
"ts-node": "",
"typed-rpc": "^6.1.1",
"typescript": ""
}
}