-
-
Notifications
You must be signed in to change notification settings - Fork 896
/
Copy pathpackage.json
169 lines (169 loc) · 4.93 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
"author": "Espen Hovlandsdal <[email protected]>",
"bugs": "https://github.com/remarkjs/react-markdown/issues",
"contributors": [
"Alexander Wallin <[email protected]>",
"Alexander Wong <[email protected]>",
"André Staltz <[email protected]>",
"Angus MacIsaac <[email protected]>",
"Beau Roberts <[email protected]>",
"Charlie Chen <[email protected]>",
"Christian Murphy <[email protected]>",
"Christoph Werner <[email protected]>",
"Danny <[email protected]>",
"Dennis S <[email protected]>",
"Espen Hovlandsdal <[email protected]>",
"Evan Hensleigh <[email protected]>",
"Fabian Irsara <[email protected]>",
"Florentin Luca Rieger <[email protected]>",
"Frank <[email protected]>",
"Igor Kamyshev <[email protected]>",
"Jack Williams <[email protected]>",
"Jakub Chrzanowski <[email protected]>",
"Jeremy Moseley <[email protected]>",
"Jesse Pinho <[email protected]>",
"Kelvin Chan <[email protected]>",
"Kohei Asai <[email protected]>",
"Linus Unnebäck <[email protected]>",
"Marshall Smith <[email protected]>",
"Nathan Bierema <[email protected]>",
"Nicolas Venegas <[email protected]>",
"Peng Guanwen <[email protected]>",
"Petr Gazarov <[email protected]>",
"Phil Rajchgot <[email protected]>",
"Rasmus Eneman <[email protected]>",
"René Kooi <[email protected]>",
"Riku Rouvila <[email protected]>",
"Robin Wieruch <[email protected]>",
"Rostyslav Melnychuk <[email protected]>",
"Ted Piotrowski <[email protected]>",
"Thibaud Courtoison <[email protected]>",
"Thomas Lindstrøm <[email protected]>",
"Tiago Roldão <[email protected]>",
"Titus Wormer <[email protected]> (https://wooorm.com)",
"cerkiewny <[email protected]>",
"evoye <[email protected]>",
"gRoberts84 <[email protected]>",
"mudrz <[email protected]>",
"vanchagreen <[email protected]>"
],
"dependencies": {
"@types/hast": "^3.0.0",
"@types/mdast": "^4.0.0",
"devlop": "^1.0.0",
"hast-util-to-jsx-runtime": "^2.0.0",
"html-url-attributes": "^3.0.0",
"mdast-util-to-hast": "^13.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"unified": "^11.0.0",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.0"
},
"description": "React component to render markdown",
"devDependencies": {
"@testing-library/react": "^16.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"c8": "^10.0.0",
"concat-stream": "^2.0.0",
"esbuild": "^0.25.0",
"eslint-plugin-react": "^7.0.0",
"global-jsdom": "^26.0.0",
"prettier": "^3.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rehype-raw": "^7.0.0",
"rehype-starry-night": "^2.0.0",
"remark-cli": "^12.0.0",
"remark-gfm": "^4.0.0",
"remark-preset-wooorm": "^11.0.0",
"remark-toc": "^9.0.0",
"type-coverage": "^2.0.0",
"typescript": "^5.0.0",
"xo": "^0.60.0"
},
"exports": "./index.js",
"files": [
"index.d.ts.map",
"index.d.ts",
"index.js",
"lib/"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
},
"keywords": [
"ast",
"commonmark",
"component",
"gfm",
"markdown",
"react",
"react-component",
"remark",
"unified"
],
"license": "MIT",
"name": "react-markdown",
"peerDependencies": {
"@types/react": ">=18",
"react": ">=18"
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"semi": false,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
},
"remarkConfig": {
"plugins": [
"remark-preset-wooorm",
[
"remark-lint-no-html",
false
]
]
},
"repository": "remarkjs/react-markdown",
"scripts": {
"build": "tsc --build --clean && tsc --build && type-coverage",
"format": "remark --frail --output --quiet -- . && prettier --log-level warn --write -- . && xo --fix",
"test-api": "node --conditions development --experimental-loader=./script/load-jsx.js --no-warnings test.jsx",
"test-coverage": "c8 --100 --exclude script/ --reporter lcov -- npm run test-api",
"test": "npm run build && npm run format && npm run test-coverage"
},
"sideEffects": false,
"typeCoverage": {
"atLeast": 100,
"strict": true
},
"type": "module",
"version": "10.1.0",
"xo": {
"envs": [
"shared-node-browser"
],
"extends": "plugin:react/jsx-runtime",
"overrides": [
{
"files": [
"**/*.jsx"
],
"rules": {
"no-unused-vars": "off"
}
}
],
"prettier": true,
"rules": {
"complexity": "off",
"n/file-extension-in-import": "off",
"unicorn/prevent-abbreviations": "off"
}
}
}