forked from dragonman225/notablog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "notablog",
"version": "0.5.0",
"description": "Generate a minimalistic blog from a Notion.so table.",
"author": "dragonman225",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"notablog": "bin/cli.js"
},
"scripts": {
"build": "npm run build:module && npm run build:doc",
"build:module": "rm -rf dist && rollup -c && tsc --emitDeclarationOnly",
"build:doc": "npm run build:dependency-graph",
"build:dependency-graph": "npx depcruise --exclude '^node_modules' --output-type dot --prefix 'https://github.com/dragonman225/notablog/tree/master/' src/index.ts | dot -T svg > assets/deps_graph.svg",
"build:tsviz": "tsviz src/ntable.ts assets/ntable.png",
"dev": "rollup -cw",
"test": "ts-node test/ntable.spec.ts",
"release": "npm run build && npm publish",
"release:beta": "npm run build && npm publish --tag beta",
"upgrade": "node tools/upgrade-deps.js"
},
"dependencies": {
"@dnpr/cli": "^1.0.0",
"@dnpr/fsutil": "^0.1.3",
"@dnpr/logger": "^0.2.0",
"@dnpr/task-manager": "^1.0.0",
"ejs": "^3.1.6",
"nast-util-from-notionapi": "1.2.1",
"nast-util-to-react": "1.2.1",
"notionapi-agent": "^1.2.1",
"squirrelly": "^7.9.2",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"@rollup/plugin-typescript": "^2.1.0",
"@types/node": "^13.9.0",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"dependency-cruiser": "^9.25.0",
"eslint": "^6.8.0",
"nast-types": "1.2.1",
"rollup": "^2.0.2",
"ts-node": "^8.6.2",
"tsviz": "^1.0.11",
"typescript": "^4.2.4",
"zora": "^3.1.8"
},
"files": [
"dist/",
"assets/"
],
"keywords": [
"nodejs",
"notion",
"blog"
],
"homepage": "https://github.com/dragonman225/notablog",
"repository": {
"type": "git",
"url": "https://github.com/dragonman225/notablog.git"
},
"bugs": {
"url": "https://github.com/dragonman225/notablog/issues"
}
}