-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.26 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
{
"name": "rehype-github-alerts",
"version": "3.0.0",
"description": "rehype plugin to create alerts (admonitions/callouts)",
"main": "./dist/index.js",
"scripts": {
"build": "esbuild ./src/index.ts --format=esm --target=es2022 --outdir=dist && npm run types",
"build-min": "esbuild ./src/index.ts --format=esm --bundle --minify --target=es2022 --outdir=dist && npm run types",
"lint": "npx eslint src/",
"lint-fix": "npx eslint src/ --fix",
"types": "tsc --declaration --emitDeclarationOnly --declarationDir dist",
"test": "npm run build && npm run test-coverage",
"test-api": "node --conditions development test/index.js",
"test-coverage": "c8 --100 --check-coverage --reporter lcov npm run test-api"
},
"author": "chrisweb (https://chris.lu)",
"license": "MIT",
"keywords": [
"rehype-plugin",
"github",
"alerts",
"admonitions",
"callouts",
"rehype",
"hast",
"mdx",
"markdown",
"typescript"
],
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"files": [
"package*.json",
"dist/*"
],
"repository": {
"type": "git",
"url": "https://github.com/chrisweb/rehype-github-alerts.git"
},
"bugs": "https://github.com/chrisweb/rehype-github-alerts/issues",
"dependencies": {
"hast-util-from-html": "^2.0.3",
"hast-util-is-element": "^3.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@types/hast": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"c8": "^10.1.2",
"create-gfm-fixtures": "^2.0.0",
"dotenv": "^16.4.5",
"esbuild": "^0.24.0",
"eslint": "9.14.0",
"globals": "^15.12.0",
"rehype-stringify": "^10.0.1",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"typescript": "^5.6.3",
"unified": "^11.0.5"
},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"strict": true
}
}