-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.71 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
{
"name": "remark-github-blockquote-alert",
"version": "1.3.0",
"description": "Alerts are a Markdown extension based on the blockquote syntax that you can use to emphasize critical information.",
"homepage": "https://jaywcjlove.github.io/remark-github-blockquote-alert",
"funding": "https://jaywcjlove.github.io/#/sponsor",
"author": "Kenny Wong <wowohoo@qq.com>",
"license": "MIT",
"sideEffects": false,
"type": "module",
"typings": "./lib/index.d.ts",
"exports": {
".": "./lib/index.js",
"./alert.css": "./alert.css"
},
"scripts": {
"prepack": "npm run build",
"start": "node lib/index.js",
"watch": "tsbb watch",
"build": "tsbb build",
"type-check": "tsc --noEmit",
"test": "tsbb test",
"coverage": "tsbb test --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/remark-github-blockquote-alert"
},
"files": [
"alert.css",
"src",
"lib"
],
"keywords": [
"remark",
"remark-plugin",
"remark-github-blockquote-alert",
"alert",
"element",
"markdown",
"javascript",
"html",
"ast",
"unified"
],
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/?!(.*)"
]
},
"engines": {
"node": ">=16"
},
"dependencies": {
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"hast-util-select": "^6.0.0",
"rehype": "^13.0.0",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.0",
"remark": "^15.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"tsbb": "^4.2.5",
"unified": "^11.0.4"
}
}