-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.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.5.1",
"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": {
"mdast-util-to-string": "^4.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@types/unist": "^3.0.3",
"prettier": "^3.3.3",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"typescript": "^5.0.2",
"unified": "^11.0.5",
"vitest": "^2.0.5"
}
}