-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.33 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
{
"name": "notion-markdownify",
"version": "0.1.0",
"description": "NotionMarkdownify is a program that allows you to autoconvert a Notion database to Markdown files.",
"author": "d556f8 <l.juhyeonni@gmail.com>",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/d556f8/NotionMarkdownify.git"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"build-publish": "yarn build && node setupPackage.js && cd dist && yarn publish",
"test": "node ./dist/test.js",
"clean-build": "rm -rf ./dist"
},
"dependencies": {
"@notionhq/client": "^2.2.4",
"dotenv": "^16.0.3",
"notion-to-md": "^2.5.6",
"typescript": "^5.0.4"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.15.13",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.39.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.7"
}
}