-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
{
"name": "flomo-importer-plugin",
"version": "1.1.2",
"description": "Make Flomo Memos to Obsidian Notes",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"keywords": [],
"author": "Jialu Y",
"license": "MIT",
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@types/crypto-js": "^4.1.1",
"@types/decompress": "^4.2.4",
"@types/dompurify": "^3.0.3",
"@types/fs-extra": "^11.0.1",
"@types/node": "^14.11.2",
"@types/showdown": "^2.0.2",
"@types/turndown": "^5.0.2",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.14.47",
"gts": "^3.1.1",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "~4.7.0"
},
"dependencies": {
"adm-zip": "^0.5.10",
"crypto-js": "^4.1.1",
"decompress": "^4.2.1",
"dompurify": "^3.0.6",
"fs-extra": "^11.1.0",
"html-parser2": "^1.0.2",
"node-html-markdown": "^1.3.0",
"node-html-parser": "^6.1.4",
"parse5": "^7.1.2",
"playwright": "^1.43.1",
"playwright-core": "^1.42.1",
"showdown": "^2.1.0",
"turndown": "^7.1.2",
"uuid": "^9.0.0"
}
}