-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
54 lines (54 loc) · 1.16 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
{
"name": "rehype-shiki",
"version": "0.0.9",
"description": "rehype plugin to highlight code blocks with shiki",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"format": "prettier --write '**/*.js' && xo --fix",
"test": "xo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsclarke/rehype-shiki.git"
},
"keywords": [
"rehype",
"shiki",
"hast",
"syntax",
"highlight",
"highlighting"
],
"author": "Richard Clarke <rsclrk@pm.me> (https://rsclarke.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rsclarke/rehype-shiki/issues"
},
"homepage": "https://github.com/rsclarke/rehype-shiki#readme",
"dependencies": {
"hast-util-to-string": "^1.0.4",
"shiki": "^0.1.7",
"shiki-languages": "^0.1.6",
"unist-builder": "^2.0.3",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"prettier": "2.0.5",
"xo": "^0.32.1"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"esnext": false
}
}