-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 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
{
"name": "notion-github-sync",
"version": "0.1.0",
"description": "Notion GitHub Sync — Node.js primitives for project management integrations with Notion: rate-limited HTTP client, page/database publisher, GitHub↔Notion sync bridge, and CLI.",
"main": "src/index.js",
"bin": {
"notion-github-sync": "bin/notion-github-sync.js"
},
"files": [
"src",
"bin",
"LICENSE",
"README.md",
"docs/CHANGELOG.md"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"format": "prettier --write \"src/**/*.js\" \"test/**/*.js\" \"examples/**/*.js\"",
"format:check": "prettier --check \"src/**/*.js\" \"test/**/*.js\" \"examples/**/*.js\"",
"example:verify": "node examples/01-verify-connection.js",
"example:page": "node examples/02-create-page.js",
"example:db": "node examples/03-create-database.js",
"example:sync": "node examples/04-github-sync.js",
"example:mcp": "node examples/05-mcp-bridge.js"
},
"keywords": [
"notion",
"notion-api",
"github",
"github-sync",
"issue-sync",
"project-management",
"automation",
"cli"
],
"license": "MIT",
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a2z2k26/notion-github-sync.git"
},
"bugs": {
"url": "https://github.com/a2z2k26/notion-github-sync/issues"
},
"homepage": "https://github.com/a2z2k26/notion-github-sync#readme",
"dependencies": {
"@notionhq/client": "^2.2.0",
"@octokit/rest": "^20.0.0",
"commander": "^11.0.0",
"dotenv": "^16.0.0",
"inquirer": "^8.2.0"
},
"devDependencies": {
"jest": "^29.0.0",
"prettier": "^3.0.0"
}
}