package.json•958 B
{
"name": "search-stock-news-mcp",
"version": "1.0.12",
"description": "MCP server for searching stock news using Tavily API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"bin": {
"search-stock-news-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepare": "npm run build"
},
"keywords": [],
"author": "Hieu TRAN @ Cognitive Stack",
"license": "MIT",
"dependencies": {
"@tavily/core": "^0.4.0",
"dotenv": "^16.0.0",
"fastmcp": "^1.27.7",
"zod": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"tsx": "^3.0.0",
"typescript": "^5.0.0"
}
}