-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.02 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
{
"name": "@beoe/rehype-code-hook",
"type": "module",
"version": "0.1.0",
"description": "rehype plugin for code fences",
"keywords": [
"rehype"
],
"author": "stereobooster",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stereobooster/beoe.git",
"directory": "packages/rehype-code-hook"
},
"sideEffects": false,
"exports": {
"types": "./dist/index.d.js",
"default": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"files": [
"dist"
],
"types": "./dist/index.d.js",
"scripts": {
"test": "vitest",
"build": "rm -rf dist && tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist"
},
"dependencies": {
"@types/hast": "^3.0.4",
"hast-util-from-html-isomorphic": "^2.0.0",
"hast-util-to-text": "^4.0.2",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1"
}
}