generated from makenotion/notion-sdk-typescript-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
46 lines (46 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
{
"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": "tsx 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.7",
"front-matter": "^4.0.2",
"fs-extra": "^11.2.0",
"markdown-table": "^3.0.4",
"tsx": "^4.19.2",
"yaml": "^2.7.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241230.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.3",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
}
}