package.jsonā¢1.45 kB
{
"name": "@surgbc/egw-writings-api-server",
"version": "1.0.0",
"description": "MCP server providing live access to EGW Writings API",
"main": "dist/server.js",
"bin": {
"egw-api-server": "dist/server.js"
},
"type": "module",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/gospelsounders/egw-writings-mcp.git",
"directory": "apps/api-server"
},
"author": {
"name": "Brian Onango",
"url": "https://github.com/surgbc"
},
"homepage": "https://github.com/gospelsounders/egw-writings-mcp#readme",
"bugs": {
"url": "https://github.com/gospelsounders/egw-writings-mcp/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"egw",
"ellen-white",
"writings",
"api",
"research",
"educational"
],
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsx watch src/server.ts",
"clean": "rimraf dist",
"lint": "eslint src/ --ext .ts"
},
"dependencies": {
"@surgbc/egw-writings-shared": "workspace:*",
"@modelcontextprotocol/sdk": "^1.0.0",
"dotenv": "^16.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"rimraf": "^5.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}