34 lines
714 B
JSON
34 lines
714 B
JSON
{
|
|
"name": "@mcpengine/notion",
|
|
"version": "0.1.0",
|
|
"description": "MCP server for Notion API",
|
|
"type": "module",
|
|
"main": "dist/main.js",
|
|
"bin": {
|
|
"notion-mcp": "dist/main.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsx src/main.ts",
|
|
"start": "node dist/main.js",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
"axios": "^1.7.0",
|
|
"zod": "^3.23.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19.2.3",
|
|
"react": "^19.2.4",
|
|
"react-dom": "^19.2.4",
|
|
"tsx": "^4.0.0",
|
|
"typescript": "^5.6.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|