-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.94 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "remark-docusaurus",
"version": "0.4.5",
"description": "Remark plugin for docusaurus features",
"license": "MIT",
"author": {
"name": "Eric Chen",
"email": "[email protected]"
},
"keywords": [
"code-block",
"directive",
"doc",
"document",
"documentation",
"docusaurus",
"markdown",
"remark",
"remark-plugin",
"remarkjs",
"site-generator",
"tabs"
],
"homepage": "https://github.com/show-docs/remark-docusaurus",
"repository": {
"type": "git",
"url": "https://github.com/show-docs/remark-docusaurus.git"
},
"bugs": {
"url": "https://github.com/show-docs/remark-docusaurus/issues"
},
"main": "lib/index.mjs",
"files": [
"lib"
],
"type": "module",
"scripts": {
"lint:staged": "nice-move lint staged",
"prepare": "nice-move git hooks",
"prepublishOnly": "pnpm run lint:staged && pnpm test",
"snapshot": "ava --fail-fast -u -w",
"test": "ava --fail-fast"
},
"dependencies": {
"markdown-code-block-meta": "^0.0.2",
"titleize": "^4.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@bring-it/npm": "^0.5.9",
"@nice-move/cli": "^0.11.16",
"@nice-move/eslint-config-base": "^0.11.28",
"@nice-move/prettier-config": "^0.14.10",
"ava": "^6.2.0",
"eslint": "^8.57.1",
"eslint-plugin-ava": "^14.0.0",
"garou": "^0.8.1",
"lodash": "^4.17.21",
"prettier": "^3.3.3",
"remark": "^15.0.1",
"remark-admonitions": "^1.2.1",
"remark-directive": "^3.0.0",
"remark-frontmatter": "^5.0.0",
"remark-mdx": "^3.1.0",
"unist-util-remove-position": "^5.0.0",
"yaml": "^2.6.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0 || ^16.13.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"eslintConfig": {
"extends": "@nice-move/eslint-config-base"
},
"prettier": "@nice-move/prettier-config"
}