forked from mientjan/react-native-markdown-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "@echo-health/react-native-markdown-renderer",
"version": "4.0.0",
"description": "Fork of markdown renderer for react-native, with CommonMark spec support + adds syntax extensions & sugar (URL autolinking, typographer).",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {},
"repository": {
"type": "git",
"url": "git+https://github.com/echo-health/react-native-markdown-renderer.git"
},
"keywords": [
"react",
"react-native",
"native",
"markdown",
"commonmark",
"markdown-it"
],
"author": "Mient-jan Stelling",
"license": "MIT",
"bugs": {
"url": "https://github.com/echo-health/react-native-markdown-renderer/issues"
},
"homepage": "https://github.com/echo-health/react-native-markdown-renderer#readme",
"dependencies": {
"@types/markdown-it": "^0.0.4",
"markdown-it": "^8.4.0",
"prop-types": "^15.5.10",
"react-native-fit-image": "^1.5.2"
},
"peerDependencies": {
"react": "18.2.0",
"react-native": "0.71.4"
},
"devDependencies": {
"chokidar": "^2.0.0",
"fs-extra": "^5.0.0"
}
}