-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.54 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
81
82
{
"name": "rehype-github-alerts",
"version": "4.1.0",
"description": "rehype plugin to create alerts (admonitions/callouts)",
"main": "./dist/index.js",
"scripts": {
"build": "npm run build-css && esbuild ./src/index.ts --format=esm --target=es2022 --outdir=dist && npm run types",
"build-css": "esbuild --bundle ./src/styling/css/index.css --outfile=dist/styling/css/index.css",
"lint": "eslint src/",
"lint-fix": "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"
},
"./styling/css/index.css": "./dist/styling/css/index.css"
},
"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",
"@primer/octicons": "^19.14.0"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@stylistic/eslint-plugin": "^3.0.0",
"@types/hast": "^3.0.4",
"@types/node": "^22.10.10",
"@types/primer__octicons": "^19.11.0",
"c8": "^10.1.3",
"create-gfm-fixtures": "^2.2.0",
"dotenv": "^16.4.7",
"esbuild": "^0.24.2",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"jiti": "^2.4.2",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"unified": "^11.0.5"
},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"strict": true
},
"funding": {
"url": "https://github.com/sponsors/chrisweb"
}
}