generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
36 lines (36 loc) · 1005 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
{
"name": "obsidian-importer",
"version": "1.6.12",
"description": "Import notes from other apps like Evernote.",
"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 package.json versions.json",
"lint": "eslint src --ext .ts --fix"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@microsoft/microsoft-graph-types": "2.38.0",
"@types/node": "16.6.2",
"@types/xml-flow": "1.0.1",
"@typescript-eslint/eslint-plugin": "6.2.1",
"@typescript-eslint/parser": "6.2.1",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"eslint": "8.46.0",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@zip.js/zip.js": "2.7.20",
"joplin-turndown-plugin-gfm": "1.0.12",
"plain-tag": "0.1.3",
"protobufjs": "7.2.5",
"static-params": "0.4.0",
"xml-flow": "1.0.4"
}
}