-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 KB
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
{
"name": "@tuyuritio/rehype-image-figure",
"version": "1.0.0",
"description": "Rehype plugin to transform images into figures with captions.",
"license": "GPL-3.0-or-later",
"author": "tuyuritio",
"homepage": "https://github.com/tuyuritio/thought-lite-toolkit/tree/main/packages/image-figure#readme",
"repository": {
"type": "git",
"url": "https://github.com/tuyuritio/thought-lite-toolkit",
"directory": "packages/image-figure"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"dev": "vitest",
"build": "tsup src/index.ts --format esm --dts"
},
"devDependencies": {
"@types/hast": "catalog:",
"@types/mdast": "catalog:",
"@types/unist": "catalog:",
"rehype-parse": "catalog:",
"rehype-stringify": "catalog:",
"remark-parse": "catalog:",
"remark-rehype": "catalog:",
"unified": "catalog:"
},
"peerDependencies": {
"unified": "catalog:"
},
"dependencies": {
"hastscript": "catalog:",
"unist-builder": "catalog:",
"unist-util-visit": "catalog:"
}
}