-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.91 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.91 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@agency-kit/notion-cms",
"type": "module",
"version": "0.10.0",
"description": "NotionCMS. Turn Notion into a full-fledged headless CMS (content management system).",
"author": "Jacob Milhorn",
"license": "MIT",
"homepage": "https://www.agencykit.so/notion-cms/guide/",
"repository": {
"type": "git",
"url": "git+https://github.com/agency-kit/notion-cms.git"
},
"bugs": {
"url": "https://github.com/agency-kit/notion-cms/issues"
},
"keywords": [
"notion",
"content",
"content management",
"cms",
"notion-cms",
"notion cms",
"NotionCMS",
"notion content management",
"static site generation",
"ssg",
"ssr",
"server side rendered",
"server rendered",
"node",
"11ty",
"eleventy",
"headless cms",
"headless content management system",
"framework agnostic",
"agnostic"
],
"main": "./dist/index.js",
"types": "./index.d.ts",
"scripts": {
"dev": "tsc --watch",
"watch": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 chokidar \"src/**/*.ts\" -c \"rollup -c && tsc --project ./tsconfig.json && npx uvu test\"",
"test:no-mock": "node test/notion-cms.spec.js true",
"build": "rm -rf dist && tsc --project ./tsconfig.json && rollup -c",
"build:dts": "rm -rf dist && tsc --project ./tsconfig.json && rollup -c && npm run dts",
"dts": "dts-bundle-generator -o index.d.ts src/index.ts --no-check && rm -rf .tmp",
"test": "uvu test",
"build:test": "npm run build:dts && c8 npm test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "changeset publish"
},
"dependencies": {
"@clack/prompts": "^0.6.3",
"@notionhq/client": "^2.2.3",
"file-type": "^18.5.0",
"flatted": "^3.2.7",
"highlight.js": "^11.7.0",
"human-interval": "^2.0.1",
"lodash": "^4.17.21",
"marked": "^5.0.2",
"marked-gfm-heading-id": "^3.0.3",
"nanoid": "^4.0.2",
"notion-utils": "^6.16.0",
"picocolors": "^1.0.0",
"serialize-javascript": "^6.0.1",
"sharp": "^0.32.4",
"walkjs": "^4.0.5",
"zod": "^3.21.4"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.6",
"@changesets/cli": "^2.26.1",
"@notion-stuff/v4-types": "^6.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@types/lodash": "^4.14.191",
"@types/marked": "^4.0.8",
"@types/node": "^20.1.5",
"@types/serialize-javascript": "^5.0.2",
"bottleneck": "^2.19.5",
"c8": "^7.13.0",
"chokidar": "^3.5.3",
"chokidar-cli": "^3.0.0",
"dotenv": "^16.0.3",
"dts-bundle-generator": "^8.0.0",
"esbuild": "^0.17.11",
"nock": "^13.3.0",
"rollup": "^3.19.1",
"rollup-plugin-esbuild": "^5.0.0",
"simple-git-hooks": "^2.8.1",
"terser": "^5.16.6",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"uvu": "^0.5.6"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}