package.json•961 B
{
"name": "naver-flight-mcp",
"version": "0.1.0",
"description": "MCP server for searching Naver flight tickets with lowest prices",
"author": "Your Name",
"license": "MIT",
"keywords": [
"mcp",
"model-context-protocol",
"naver",
"flight",
"travel",
"tickets"
],
"repository": {
"type": "git",
"url": "https://github.com/yourusername/naver-flight-mcp.git"
},
"bugs": {
"url": "https://github.com/yourusername/naver-flight-mcp/issues"
},
"type": "module",
"bin": {
"naver-flight-mcp": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "node dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.1",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^20.11.24",
"playwright": "^1.56.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.19.0"
}
}