package.json•1.61 kB
{
"name": "taiwan-holiday-mcp",
"version": "1.0.2",
"description": "MCP server for Taiwan holiday information",
"license": "MIT",
"author": "Justin Lee",
"homepage": "https://github.com/lis186/taiwan-holiday-mcp",
"repository": {
"type": "git",
"url": "git+https://github.com/lis186/taiwan-holiday-mcp.git"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"taiwan-holiday-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "shx rm -rf dist",
"build": "npm run clean && tsc && shx chmod +x dist/*.js",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run build",
"package:test": "npm pack --dry-run",
"package:local": "npm pack"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"jest": "^29.7.0",
"nock": "^13.5.6",
"shx": "^0.4.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"taiwan",
"holiday",
"calendar",
"claude",
"cursor"
]
}