-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
{
"name": "notion-docgen",
"version": "0.0.1",
"description": "Generate docsify compatible markdown from Notion exported markdown",
"bin": "index.js",
"directories": {
"doc": "docs"
},
"dependencies": {
"fs-extra": "^9.0.1",
"mdast-builder": "n0x3u5/mdast-builder#temp-enable-npm-git-dependency",
"mdast-util-toc": "^5.0.3",
"remark": "^12.0.1",
"slugify": "^1.4.5",
"unist-util-find-all-between": "^2.1.0",
"unist-util-map": "^2.0.1",
"unist-util-select": "^3.0.1",
"unist-util-visit": "^2.0.3",
"winston": "^3.3.3",
"yargs-parser": "^20.2.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/yargs-parser": "^15.0.0",
"docsify-cli": "^4.4.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"scripts": {
"prestart": "npm run scrape",
"start": "docsify start docs",
"scrape": "rm -rf docs/public-documentation docs/_sidebar.md docs/examples.json && ts-node index.ts",
"build": "rm -rf index.js && tsc && sed -i \"s/ts-node-script/node/\" index.js"
},
"keywords": [
"docsify",
"notion",
"documentation",
"markdown"
],
"author": "Nakshatra Mukhopadhyay",
"license": "MIT"
}