generated from HEIGE-PCloud/Notion-Hugo
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.08 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
{
"name": "notion-doit",
"version": "0.0.1",
"description": "Use Notion as the CMS for your Hugo DoIt site",
"main": "src/index.ts",
"private": true,
"license": "GPL-3.0-only",
"homepage": "https://github.com/Hugo-DoIt/Notion-DoIt",
"bugs": {
"url": "https://github.com/Hugo-DoIt/Notion-DoIt/issues"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"scripts": {
"start": "ts-node src/index.ts",
"server": "hugo server -D --disableFastRender --noHTTPCache",
"typecheck": "tsc --noEmit",
"build": "tsc",
"format": "prettier --write src/**/*.ts"
},
"keywords": [
"Notion",
"Hugo",
"theme",
"DoIt"
],
"author": "HEIGE-PCloud",
"dependencies": {
"@notionhq/client": "^2.2.15",
"dotenv": "^16.4.5",
"front-matter": "^4.0.2",
"fs-extra": "^11.2.0",
"markdown-table": "^2.0.0",
"yaml": "^2.6.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/markdown-table": "^2.0.0",
"@types/node": "^22.8.6",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}