-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 938 Bytes
/
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
{
"version": "0.11.1",
"name": "@meshcloud/notion-markdown-cms",
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "https://github.com/meshcloud/notion-markdown-cms.git"
},
"author": "Johannes Rudolph <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc --build",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/js-yaml": "^4.0.3",
"@types/mime-types": "^2.1.1",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@notionhq/client": "^0.3.2",
"chalk": "^4.1.2",
"got": "^11.8.2",
"js-yaml": "^4.1.0",
"keyv-file": "^0.2.0",
"mime-types": "^2.1.32",
"slugify": "^1.6.0"
}
}