generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
37 lines (37 loc) · 1.2 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
{
"name": "obsidian-note-synchronizer",
"version": "0.1.5",
"description": "This is a plugin for synchornizing Obsidian notes to other note-based softwares like Anki, following more strictly the principles of Zettelkasten and treating each Obsidian file as a note.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"format": "npx prettier --write .",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"markdown-it": "^13.0.1",
"markdown-it-highlightjs": "^4.0.1",
"object-hash": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.11.9",
"@types/object-hash": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"builtin-modules": "^3.3.0",
"esbuild": "^0.15.15",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.3.1",
"obsidian": "latest",
"prettier": "2.8.4",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
}
}