-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2.16 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
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
{
"name": "@mk-notes/cli",
"version": "0.0.5",
"private": false,
"description": "Markdown to Notion synchronization CLI 🔄",
"keywords": [
"markdown",
"md",
"notion",
"notion-api",
"synchronization",
"mk-notes",
"cli",
"markdown-to-notion",
"md-to-notion",
"md2notion"
],
"bugs": {
"url": "https://github.com/Myastr0/mk-notes/issues"
},
"repository": "git@github.com:Myastr0/mk-notes.git",
"license": "MIT",
"author": "Myastr0",
"main": "dist/index.js",
"bin": {
"mk-notes": "./dist/bin/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.production.json && tsc-alias -p tsconfig.production.json",
"cli": "ts-node src/bin",
"doc:gen": "nodemon --watch src/**/* -x \"typedoc --options typedoc.json\"",
"doc:serve": "cd ./docs && yarn start",
"doc:watch": "yarn doc:gen & yarn doc:serve",
"lint": "lint-staged",
"prepare": "husky",
"test": "jest --passWithNoTests"
},
"dependencies": {
"@notionhq/client": "^2.2.15",
"commander": "^13.1.0",
"dom-serializer": "^2.0.0",
"front-matter": "^4.0.2",
"htmlparser2": "^10.0.0",
"js-yaml": "^4.1.0",
"marked": "^15.0.6",
"ora": "5.4.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"concurrently": "^9.1.2",
"eslint": "^9.19.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"husky": "^9.1.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"nock": "^14.0.0",
"nodemon": "^3.1.9",
"prettier": "^3.3.0",
"ts-jest": "^29.2.5",
"ts-morph": "^22.0.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.27.6",
"typedoc-plugin-markdown": "^4.4.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0"
},
"engines": {
"node": ">=20"
}
}