package.json•752 B
{
"name": "nexar-mcp-server",
"version": "0.1.0",
"type": "module",
"main": "dist/index.js",
"bin": {
"nexar-mcp": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/index.js 2>/dev/null || true",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node dist/index.js",
"start:stdio": "node dist/index.js --stdio",
"dev": "tsc && node dist/index.js",
"dev:stdio": "tsc && node dist/index.js --stdio"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.21.1",
"axios": "^1.6.0",
"dotenv": "^16.3.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"shx": "^0.4.0",
"typescript": "^5.3.0"
}
}