forked from Myastr0/mk-notes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.84 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.84 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
{
"name": "@mk-notes/cli",
"version": "3.0.2",
"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/cli/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.production.json && tsc-alias -p tsconfig.production.json",
"build:actions": "yarn build:actions:sync && yarn build:actions:preview",
"build:actions:preview": "ncc build -o preview src/bin/github-actions/preview.ts",
"build:actions:sync": "ncc build -o sync src/bin/github-actions/sync.ts",
"cli": "ts-node src/bin/cli",
"docs:gen": "nodemon --watch src/**/* -x \"typedoc --options typedoc.json\"",
"docs:serve": "cd ./docs && yarn dev",
"docs:watch": "yarn docs:gen & yarn docs:serve",
"eslint": "eslint --fix",
"lint": "lint-staged",
"prepare": "husky",
"test": "jest --passWithNoTests"
},
"dependencies": {
"@actions/core": "1.11.1",
"@notionhq/client": "5.4.0",
"commander": "13.1.0",
"dom-serializer": "2.0.0",
"form-data": "4.0.4",
"front-matter": "4.0.2",
"htmlparser2": "10.0.0",
"js-yaml": "4.1.0",
"katex": "0.16.7",
"marked": "15.0.12",
"marked-katex-extension": "5.1.4",
"node-fetch": "2.7.0",
"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/katex": "0.16.7",
"@types/node": "22.9.0",
"@types/node-fetch": "2.6.0",
"@typescript-eslint/eslint-plugin": "8.34.1",
"@typescript-eslint/parser": "8.34.1",
"@vercel/ncc": "0.38.4",
"concurrently": "9.1.2",
"eslint": "9.19.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.11.0",
"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"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"engines": {
"node": ">=20"
}
}