package.json•925 B
{
"name": "lithic-mcp-server",
"version": "1.0.0",
"description": "MCP Server for Lithic API - TypeScript implementation",
"main": "build/index.js",
"type": "module",
"bin": {
"lithic-mcp": "./build/index.js"
},
"scripts": {
"build": "tsc && chmod 755 build/index.js",
"start": "node build/index.js",
"dev": "tsc-watch --onSuccess \"node build/index.js\"",
"docker:build": "docker build -t mcp/lithic .",
"docker:run": "docker run --rm -i -p 8080:8080 -e LITHIC_API_KEY mcp/lithic"
},
"files": [
"build"
],
"keywords": ["lithic", "api", "proxy", "mcp", "typescript"],
"author": "",
"license": "ISC",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.6.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.5",
"typescript": "^5.3.3",
"tsc-watch": "^6.0.4"
}
}