-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "rehype-class-names",
"version": "2.0.0",
"description": "A utility plugin to use with rehype that adds class names to HAST (html tree)",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.d.ts",
"index.js"
],
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build": "./node_modules/typescript/bin/tsc"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/riderjensen/rehype-class-names.git"
},
"keywords": [
"rehype",
"hast",
"classes"
],
"author": "Rider Jensen <[email protected]> (https://riderjensen.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/riderjensen/rehype-class-names/issues"
},
"homepage": "https://github.com/riderjensen/rehype-class-names#readme",
"dependencies": {
"@types/hast": "^3.0.0",
"hast-util-classnames": "^3.0.0",
"hast-util-select": "^6.0.0",
"unified": "^11.0.4"
},
"devDependencies": {
"gray-matter": "^4.0.3",
"jest": "^29.6.2",
"rehype-format": "^5.0.0",
"rehype-stringify": "^10.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"typescript": "^5.1.6"
}
}