-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.09 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
46
47
48
49
{
"name": "notion-md-pdf",
"version": "1.1.2",
"description": "Converts pages exported from Notion as Markdown into PDF files using the command line due to browser rendering issues.",
"main": "index.js",
"scripts": {
"start": "node ./index.js",
"postinstall": "node ./postinstall.js",
"postupdate": "node ./postinstall.js"
},
"bin": {
"notion-md-pdf": "./index.js"
},
"author": "Pat Migliaccio <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/patmigliaccio/notion-md-pdf.git"
},
"bugs": {
"url": "https://github.com/patmigliaccio/notion-md-pdf/issues"
},
"keywords": [
"notion",
"markdown",
"marked",
"md",
"convert",
"parse",
"render",
"bulk",
"markup",
"pdf",
"zip",
"html"
],
"dependencies": {
"@types/node": "^8.0.19",
"adm-zip": "^0.4.11",
"decompress-zip": "^0.3.1",
"marked": "^0.4.0",
"readline": "^1.3.0",
"request": "^2.88.0"
},
"devDependencies": {
"prettier-eslint": "^8.8.1"
},
"preferGlobal": true
}