-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.73 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.73 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
{
"name": "remark-github-beta-blockquote-admonitions",
"version": "3.1.2",
"description": "remark plugin to add support for GitHub beta blockquote-based admonitions",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "vitest",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [
"remark-plugin",
"markdown",
"admonitions",
"remark",
"github"
],
"author": "Yulong Ming <i@myl7.org> (https://myl7.org)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/myl7/remark-github-beta-blockquote-admonitions.git"
},
"bugs": {
"url": "https://github.com/myl7/remark-github-beta-blockquote-admonitions/issues"
},
"homepage": "https://github.com/myl7/remark-github-beta-blockquote-admonitions#readme",
"type": "module",
"files": [
"dist"
],
"main": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"dependencies": {
"unist-util-visit": "^5.1.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/mdast": "^4.0.4",
"@types/node": "^25.5.0",
"@types/unist": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"css-select": "^7.0.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"htmlparser2": "^12.0.0",
"prettier": "^3.8.1",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2",
"unified": "^11.0.5",
"vite": "^8.0.3",
"vitest": "^4.1.2"
}
}