nooon 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +22 -0
- package/README.md +102 -0
- package/dist/index.js +31497 -0
- package/package.json +50 -0
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "nooon",
|
|
3
|
+
"version": "0.7.0",
|
|
4
|
+
"description": "Lightweight, read-only Notion MCP Server optimized for token efficiency",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"nooon": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/corrupt952/nooon.git"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"notion",
|
|
18
|
+
"mcp",
|
|
19
|
+
"model-context-protocol",
|
|
20
|
+
"claude",
|
|
21
|
+
"ai"
|
|
22
|
+
],
|
|
23
|
+
"author": "corrupt952",
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/corrupt952/nooon/issues"
|
|
27
|
+
},
|
|
28
|
+
"homepage": "https://github.com/corrupt952/nooon#readme",
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@modelcontextprotocol/sdk": "^1.25.3",
|
|
31
|
+
"@notionhq/client": "^5.0.0",
|
|
32
|
+
"@toon-format/toon": "^2.1.0",
|
|
33
|
+
"p-limit": "^7.2.0",
|
|
34
|
+
"zod": "^4.3.6"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@biomejs/biome": "2.3.13",
|
|
38
|
+
"@types/bun": "^1.1.14",
|
|
39
|
+
"typescript": "^5.7.2"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"build": "bun build src/index.ts --outdir dist --target bun --define \"PKG_VERSION='$(jq -r .version package.json)'\"",
|
|
43
|
+
"compile": "bun build --compile src/index.ts --outfile nooon --define \"PKG_VERSION='$(jq -r .version package.json)'\" --define \"__EMBEDDED_CLIENT_ID__='$NOTION_CLIENT_ID'\" --define \"__EMBEDDED_CLIENT_SECRET__='$NOTION_CLIENT_SECRET'\"",
|
|
44
|
+
"dev": "bun run src/index.ts",
|
|
45
|
+
"lint": "biome check .",
|
|
46
|
+
"lint:fix": "biome check --write .",
|
|
47
|
+
"format": "biome format --write .",
|
|
48
|
+
"test": "bun test"
|
|
49
|
+
}
|
|
50
|
+
}
|