package.json•2 kB
{
"name": "mcp-weather",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/src/main.js",
"dev": "tsx src/main.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "jest --testPathPattern=integration",
"test:unit": "jest --testPathPattern=unit",
"test:acceptance": "jest --testPathPattern=acceptance",
"test:performance": "jest --testPathPattern=performance --runInBand",
"test:all": "npm run test:unit && npm run test:integration && npm run test:acceptance",
"coverage": "jest --coverage && jest-coverage-badges || true",
"lint": "eslint . --ext .ts,.js || true",
"mutation": "stryker run || true",
"audit": "npm audit --audit-level=moderate || true"
},
"keywords": [
"mcp",
"weather",
"api",
"typescript",
"model-context-protocol"
],
"author": "Parthiban Rajasekaran <rajasekaran.parthiban7@gmail.com>",
"license": "ISC",
"description": "A Model Context Protocol (MCP) server that provides real-time weather data",
"repository": {
"type": "git",
"url": "https://github.com/ParthibanRajasekaran/mcp-weather.git"
},
"homepage": "https://github.com/ParthibanRajasekaran/mcp-weather",
"bugs": {
"url": "https://github.com/ParthibanRajasekaran/mcp-weather/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.0",
"zod": "^3.25.74"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@stryker-mutator/core": "^6.0.0",
"@stryker-mutator/jest-runner": "^6.0.0",
"@stryker-mutator/typescript-checker": "^6.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"eslint": "^9.30.1",
"jest": "^29.7.0",
"jest-coverage-badges": "^1.1.2",
"ts-jest": "^29.4.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}