-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 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
57
{
"name": "tag-breakdown-generator",
"version": "1.0.10",
"description": "Breakdown nested tags into multiple parent tags",
"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",
"typecheck": "tsc --noEmit --skipLibCheck",
"release": "bash release.sh"
},
"keywords": [
"obsidian",
"tag",
"generator",
"plugin",
"markdown",
"yaml",
"frontmatter",
"typescript",
"bun"
],
"author": "Hananoshika Yomaru",
"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",
"esbuild": "0.17.3",
"husky": "^8.0.3",
"obsidian": "latest",
"ts-unused-exports": "^10.0.1",
"tslib": "2.4.0",
"typescript": "^5.1.3"
},
"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",
"ts-pattern": "^5.0.5",
"unist-util-visit": "^4.1.2"
}
}