-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.07 KB
/
package.json
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
{
"name": "notion-easy-export",
"version": "1.0.2",
"description": "Notion easy export is a lightweight library to convert notion document consisting of multiple nested documents or databases into an ebook format like PDFs, with the table of contents, page cover, headers etc.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"watch": "tsc -w",
"build": "tsc -b",
"test": "node lib/tests/index.js"
},
"keywords": [
"notion to ebook",
"notion easy export",
"notion exporter",
"notion",
"notion to pdf",
"bulk export",
"notion api",
"merge pdf",
"pdf",
"book",
"kindle"
],
"author": "subhamx",
"license": "Apache-2.0",
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"extract-zip": "^2.0.1",
"fs-extra": "^10.0.0",
"node-fetch": "^2.6.1",
"notion-easy-export": "^1.0.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/fs-extra": "^9.0.12",
"@types/node": "^16.4.3",
"@types/node-fetch": "^2.5.12",
"typescript": "^4.3.5"
},
"repository": {
"type": "git",
"url": "https://github.com/subhamX/notion-easy-export"
}
}