-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (104 loc) · 2.84 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"author": "Titus Wormer <[email protected]> (https://wooorm.com)",
"bugs": "https://github.com/rehypejs/rehype-github/issues",
"contributors": [
"Titus Wormer <[email protected]> (https://wooorm.com)"
],
"description": "rehype plugins that match how GitHub transforms markdown on their site",
"devDependencies#": "`type-fest` is included because otherwise an old one is at the top whose types break.",
"devDependencies": {
"@types/node": "^22.0.0",
"@types/semver": "^7.0.0",
"c8": "^10.0.0",
"control-pictures": "^2.0.0",
"create-gfm-fixtures": "^2.0.0",
"hastscript": "^9.0.0",
"html-element-attributes": "^3.0.0",
"html-tag-names": "^2.0.0",
"html-void-elements": "^3.0.0",
"prettier": "^3.0.0",
"rehype-parse": "^9.0.0",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark-cli": "^12.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-preset-wooorm": "^10.0.0",
"remark-rehype": "^11.0.0",
"semver": "^7.0.0",
"type-coverage": "^2.0.0",
"type-fest": "^4.0.0",
"typescript": "^5.0.0",
"unified": "^11.0.0",
"vfile": "^6.0.0",
"xo": "^0.59.0"
},
"files": [],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
},
"keywords": [],
"license": "MIT",
"name": "rehype-github",
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"semi": false,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
},
"private": true,
"remarkConfig": {
"plugins": [
"remark-preset-wooorm",
[
"remark-lint-no-html",
false
],
[
"remark-lint-no-undefined-references",
{
"allowShortcutLink": true
}
]
]
},
"repository": "rehypejs/rehype-github",
"scripts": {
"build": "tsc --build --clean && tsc --build && type-coverage",
"format": "remark --frail --quiet --output -- . && prettier --log-level warn --write -- . && xo --fix",
"test-api": "npm run --if-present --workspaces -- test-api",
"test-coverage": "npm run --if-present --workspaces -- test-coverage",
"test": "npm run build && npm run format && npm run test-coverage"
},
"typeCoverage": {
"atLeast": 100,
"strict": true
},
"type": "module",
"version": "0.0.0",
"workspaces": [
"packages/alert/",
"packages/break/",
"packages/color/",
"packages/dir/",
"packages/emoji/",
"packages/heading/",
"packages/image/",
"packages/link/",
"packages/notranslate/",
"packages/sanitize-schema",
"packages/viewscreen-geojson/",
"packages/viewscreen-mermaid/",
"packages/viewscreen-stl/",
"packages/yaml-metadata/",
"example/viewscreen/"
],
"xo": {
"prettier": true
}
}