-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 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
70
71
72
73
74
{
"name": "notion_mcp",
"version": "0.0.1",
"description": "",
"type": "module",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"compile": "bun build --compile src/index.ts --outfile dist/notion_mcp || $HOME/.bun/bin/bun build --compile src/index.ts --outfile dist/notion_mcp",
"perry:build": "perry compile src/index.ts -o dist/notion_mcp",
"prepare": "npm run build",
"watch": "tsc --watch"
},
"dependencies": {
"@googleapis/drive": "^20.2.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"chalk": "^5.6.2",
"dotenv": "^16.6.1",
"googleapis": "^173.0.0",
"open": "^11.0.0",
"server-destroy": "^1.0.1",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@types/node": "^22.20.1",
"@types/open": "^6.2.1",
"@types/server-destroy": "^1.0.4",
"typescript": "^5.9.3"
},
"bin": {
"notion_mcp": "dist/index.js"
},
"perry": {
"compilePackages": [
"@modelcontextprotocol/sdk",
"chalk",
"dotenv",
"zod",
"zod-to-json-schema",
"ajv",
"ajv-formats",
"cross-spawn",
"fast-deep-equal",
"json-schema-traverse",
"fast-uri",
"which",
"path-key",
"shebang-command",
"shebang-regex",
"isexe"
],
"allow": {
"compilePackages": [
"@modelcontextprotocol/sdk",
"chalk",
"dotenv",
"zod",
"zod-to-json-schema",
"ajv",
"ajv-formats",
"cross-spawn",
"fast-deep-equal",
"json-schema-traverse",
"fast-uri",
"which",
"path-key",
"shebang-command",
"shebang-regex",
"isexe"
]
}
}
}