package.json•1.2 kB
{
"name": "mcp-marketstack",
"version": "1.0.0",
"description": "MCP Server for Marketstack API",
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"lint": "eslint --fix --ext .ts src/",
"format": "prettier --write \"src/**/*.ts\"",
"test": "echo \"Error: no test specified\" && exit 1",
"typecheck": "tsc --noEmit"
},
"keywords": [
"mcp",
"model context protocol",
"marketstack",
"financial data",
"stock market",
"api"
],
"author": "Your Name/Organization",
"license": "GPL-3.0-or-later",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.1",
"@types/lru-cache": "^7.10.9",
"lru-cache": "^11.1.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/node": "^22.15.17",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.6",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
},
"files": [
"build"
],
"engines": {
"node": ">=18.0.0"
}
}