-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.81 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.81 KB
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
{
"name": "remark-block-directive",
"version": "0.1.0",
"description": "Remark plugin for turning HTML directive into MDX tags",
"license": "MIT",
"author": {
"name": "Eric Chen"
},
"keywords": [
"code-block",
"css",
"doc",
"document",
"documentation",
"docusaurus",
"markdown",
"mdx",
"mdxjs",
"remark",
"remark-plugin",
"remarkjs",
"style",
"stylesheet"
],
"homepage": "https://github.com/show-docs/remark-block-directive",
"repository": {
"type": "git",
"url": "git+https://github.com/show-docs/remark-block-directive.git"
},
"bugs": {
"url": "https://github.com/show-docs/remark-block-directive/issues"
},
"main": "lib/index.mjs",
"files": [],
"type": "module",
"scripts": {
"lint:eslint": "eslint . --quiet --fix --concurrency=auto",
"lint:staged": "nice-move lint staged",
"lint:type": "tsc -p tsconfig.json",
"prepare": "nice-move git hooks",
"prepublishOnly": "pnpm run lint:staged && pnpm run lint:type && pnpm test",
"snapshot": "ava --fail-fast -u",
"test": "ava --fail-fast"
},
"dependencies": {
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@bring-it/npm": "^0.9.3",
"@nice-move/all-in-base": "^0.6.31",
"ava": "^6.4.1",
"eslint": "^9.39.2",
"eslint-plugin-ava": "^15.1.0",
"garou": "^0.9.17",
"prettier": "~3.7.4",
"remark": "^15.0.1",
"remark-mdx": "^3.1.1",
"typescript": "~5.9.3",
"unist-util-remove-position": "^5.0.0"
},
"peerDependencies": {
"remark-directive": "^4.0.0"
},
"packageManager": "pnpm@10.27.0",
"engines": {
"node": ">=18.0.0 || ^16.13.0",
"pnpm": "^10.27.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"prettier": "@nice-move/prettier-config"
}