forked from escwxyz/remark-obsidian-callout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.29 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": "remark-obsidian-callout",
"version": "1.1.2",
"description": "A remark plugin to parse Obsidian callouts.",
"main": "dist/index.js",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "vitest",
"format": "prettier --write ."
},
"keywords": [
"remark",
"callout",
"obsidian",
"remark-plugin",
"astro",
"astro-build"
],
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/escwxyz/remark-obsidian-callout"
},
"bugs": {
"url": "https://github.com/escwxyz/remark-obsidian-callout/issues"
},
"homepage": "https://github.com/escwxyz/remark-obsidian-callout#README.md",
"files": [
"dist/*",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"exports": "./dist/index.js",
"publishConfig": {
"tarballDir": "dist"
},
"dependencies": {
"unist-util-visit": "^4.1.2"
},
"devDependencies": {
"@types/unist": "^2.0.6",
"mdast-util-to-string": "^3.1.1",
"prettier": "^2.8.7",
"rehype-raw": "^6.1.1",
"rehype-stringify": "^9.0.3",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"typescript": "^5.0.2",
"unified": "^10.1.2",
"vitest": "^0.29.7"
}
}