-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.18 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-codetabs",
"version": "1.0.0-alpha.3",
"description": "Remark plugin for fast multi-language code tab creation for Docusaurus",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"docusaurus",
"remark",
"mdx",
"code block",
"tabs"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/duanwilliam/docusaurus-remark-plugin-codetabs.git"
},
"license": "MIT",
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"prepublishOnly": "yarn build"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.5",
"@types/unist": "^2.0.6",
"concurrently": "^6.2.1",
"rollup": "^2.57.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.4.3"
},
"peerDependencies": {
"@docusaurus/core": "^2.0.0-alpha.72 || ^2.0.0",
"react": "^16.8.4 || ^17.0.0",
"react-dom": "^16.8.4 || ^17.0.0"
},
"engines": {
"node": ">=12.13.0"
}
}