-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.71 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@ramidecodes/mcp-server-notion",
"version": "1.0.6",
"description": "A Model Context Protocol (MCP) server that exposes the official Notion SDK",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-server-notion": "dist/bin.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"docs",
".cursor/rules"
],
"scripts": {
"build": "tsc",
"start": "node dist/bin.js",
"dev": "ts-node-dev --respawn --transpile-only src/bin.ts",
"lint": "eslint --ext .ts src/",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"mcp",
"notion",
"model-context-protocol",
"llm",
"mcp-server",
"cursor",
"modelcontextprotocol",
"notion-api",
"notion-sdk-js"
],
"author": "Ramiro Ramirez <ramidecodes@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ramidecodes/mcp-server-notion.git"
},
"homepage": "https://github.com/ramidecodes/mcp-server-notion#readme",
"bugs": {
"url": "https://github.com/ramidecodes/mcp-server-notion/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.6.1",
"@notionhq/client": "2.2.16",
"cors": "2.8.5",
"dotenv": "16.4.7",
"express": "4.21.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/cors": "2.8.17",
"@types/express": "5.0.0",
"@types/node": "22.13.8",
"@typescript-eslint/eslint-plugin": "8.26.0",
"@typescript-eslint/parser": "8.26.0",
"eslint": "9.21.0",
"ts-node-dev": "2.0.0",
"typescript": "5.8.2"
}
}