-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.6 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": "obsidian-md-image-caption",
"version": "1.0.5",
"description": "Generate markdown based image captions for Obsidian",
"main": "main.js",
"scripts": {
"dev": "bun esbuild.config.mjs",
"build": "bun esbuild.config.mjs production",
"version": "bun version-bump.mjs && git add manifest.json versions.json",
"prepare": "husky install",
"release": "bash ./release.sh",
"typecheck": "tsc --noEmit"
},
"keywords": [
"obsidian",
"plugin",
"dataview",
"markdown",
"generator",
"javascript"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/diff-match-patch": "^1.0.34",
"@types/js-yaml": "^4.0.6",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"bun-types": "^1.0.3",
"esbuild": "0.17.3",
"husky": "^8.0.3",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "^5.0.5"
},
"dependencies": {
"diff-match-patch": "^1.0.5",
"js-yaml": "^4.1.0",
"mdast-util-from-markdown": "^1.2.0",
"mdast-util-gfm-footnote": "^1.0.1",
"mdast-util-gfm-task-list-item": "^1.0.1",
"mdast-util-math": "^2.0.1",
"micromark-extension-gfm-footnote": "^1.0.4",
"micromark-extension-gfm-task-list-item": "^1.0.3",
"micromark-extension-math": "^2.0.2",
"micromark-util-combine-extensions": "^1.0.0",
"quick-lru": "^6.1.1",
"ts-dedent": "^2.2.0",
"unist-util-visit": "^4.1.2",
"@total-typescript/ts-reset": "^0.5.1",
"obsidian-dataview": "^0.5.59",
"zod": "^3.22.2"
}
}