forked from DrSchnitzel57/obsidian2notion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.32 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.32 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
{
"name": "notion-sync-backup-toolkit",
"version": "1.0.0",
"description": "A comprehensive toolkit for syncing between Notion, markdown files, and managing your Notion workspace. Perfect for backing up Notion to Obsidian, syncing markdown files to Notion, and maintaining your knowledge base.",
"main": "sync-to-notion.js",
"keywords": [
"notion",
"obsidian",
"markdown",
"backup",
"sync",
"knowledge-management",
"notion-api",
"documentation",
"migration",
"export"
],
"author": "Charlie Blodgett",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/your-username/notion-sync-backup-toolkit.git"
},
"bugs": {
"url": "https://github.com/your-username/notion-sync-backup-toolkit/issues"
},
"homepage": "https://github.com/your-username/notion-sync-backup-toolkit#readme",
"scripts": {
"start": "node sync-to-notion.js",
"sync": "node sync-to-notion.js",
"backup": "node notion-backup.js",
"cleanup": "node notion-page-cleanup.js",
"help": "echo 'Available commands: npm run sync, npm run backup, npm run cleanup'"
},
"dependencies": {
"@notionhq/client": "^2.2.14",
"@tryfabric/martian": "^1.2.4",
"@aws-sdk/client-s3": "^3.525.0",
"@aws-sdk/s3-request-presigner": "^3.525.0",
"dotenv": "^16.4.5"
}
}