-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.58 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
57
{
"name": "@leafac/rehype-shiki",
"version": "2.2.1",
"description": "Rehype plugin to highlight code blocks with Shiki",
"exports": "./distribution/index.js",
"types": "./distribution/index.d.ts",
"repository": "leafac/rehype-shiki",
"keywords": [
"shiki",
"syntax",
"highlight",
"rehype"
],
"author": "Leandro Facchinetti <rehype-shiki@leafac.com> (https://leafac.com)",
"license": "MIT",
"bugs": "https://github.com/leafac/rehype-shiki/issues",
"homepage": "https://github.com/leafac/rehype-shiki",
"funding": [
"https://patreon.com/leafac",
"https://paypal.me/LeandroFacchinettiEU",
"https://github.com/sponsors/leafac",
"https://btc.com/34KJBgtaFYMtDqpSgMayw9qiKWg2GQXA9M"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "prettier --check \"./source/**/*\" --end-of-line auto && npm run prepare && cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"prepare": "tsc"
},
"dependencies": {
"@leafac/html": "^3.0.0",
"hast-util-to-text": "^3.1.1",
"rehype-parse": "^8.0.3",
"unified": "^10.1.0",
"unist-util-modify-children": "^3.0.0"
},
"peerDependencies": {
"shiki": "^0.11.1"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"cross-env": "^7.0.3",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"rehype-stringify": "^9.0.2",
"remark-parse": "^10.0.0",
"remark-rehype": "^10.0.0",
"shiki": "^0.10.0",
"typescript": "^4.4.4",
"unist-util-visit": "^4.1.0"
},
"jest": {
"rootDir": "./distribution/"
}
}