-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
executable file
·47 lines (47 loc) · 1.17 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
{
"name": "@notable/dumper",
"repository": "github:notable/dumper",
"description": "Library for extracting attachments, notes and metadata out of formats used by popular note-taking apps.",
"version": "4.0.3",
"type": "module",
"main": "dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"clean": "tsex clean",
"compile": "tsex compile",
"compile:watch": "tsex compile --watch",
"test": "node ./test/index.js",
"prepublishOnly": "npm run clean && npm run compile && npm run test"
},
"keywords": [
"dump",
"export",
"import",
"note-taking",
"notes",
"attachments"
],
"dependencies": {
"cson2json": "^2.0.0",
"decode-base64": "^3.0.1",
"entities-decode": "^2.0.0",
"fast-xml-parser": "^3.21.1",
"html2markdown": "npm:@notable/html2markdown@2.0.2",
"mime2ext": "^2.0.0",
"sanitize-basename": "^2.0.0",
"uint8-encoding": "^2.0.0"
},
"devDependencies": {
"@types/node": "^20.5.0",
"domino": "^2.1.6",
"test-diff": "^2.0.3",
"tiny-parse-argv": "^2.2.0",
"tsex": "^3.0.1",
"typescript": "^5.1.6"
}
}