-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.11 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
{
"name": "docusaurus-remark-plugin-tab-blocks",
"version": "3.1.0",
"description": "Turn Docusaurus code blocks into tab blocks",
"keywords": [
"docusaurus",
"remark",
"plugin",
"tab",
"tabblock",
"code",
"codeblock"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mrazauskas/docusaurus-remark-plugin-tab-blocks.git"
},
"funding": "https://github.com/sponsors/mrazauskas",
"license": "MIT",
"type": "module",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"files": [
"index.d.ts",
"index.js"
],
"scripts": {
"check": "biome check --write",
"format": "biome format --write",
"test": "node --test",
"test:coverage": "mcr --config mcr.config.json -- npm run test",
"test:types": "tstyche"
},
"dependencies": {
"unist-util-is": "^6.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"monocart-coverage-reports": "2.11.2",
"remark": "15.0.1",
"remark-mdx": "3.1.0",
"tstyche": "3.0.0"
},
"engines": {
"node": ">=18.0"
}
}