forked from Yukaii/quiver-markdown-exporter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1013 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
44
{
"name": "quiver-to-obsidian-exporter",
"version": "1.1.0",
"description": "Export Quiver library to Obsidian markdown files",
"repository": {
"type": "git",
"url": "https://github.com/blue-monk/quiver-to-obsidian-exporter"
},
"homepage": "https://github.com/blue-monk/quiver-to-obsidian-exporter",
"main": "dist/index.mjs",
"files": [
"dist"
],
"type": "module",
"bin": {
"qvr2obs": "dist/index.mjs"
},
"engines": {
"node": ">=21.7.3"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.7",
"@types/turndown": "^5.0.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"chalk": "^5.3.0",
"cli-progress": "^3.12.0",
"dayjs": "^1.11.10",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"meow": "^13.2.0",
"turndown": "^7.1.3",
"utimes": "^5.2.1"
}
}