forked from iamacup/react-native-markdown-display
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
63 lines (63 loc) · 2 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
{
"name": "@ronradtke/react-native-markdown-display",
"version": "8.0.0",
"description": "Markdown renderer for react-native, with CommonMark spec support + adds syntax extensions & sugar (URL autolinking, typographer), originally created by Mient-jan Stelling as react-native-markdown-renderer",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"format": "prettier -w src",
"format-check": "prettier --check src",
"lint": "eslint --cache ./src",
"lint-fix": "eslint --fix --cache ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RonRadtke/react-native-markdown-display.git"
},
"keywords": [
"react",
"react-native",
"native",
"markdown",
"commonmark",
"markdown-it"
],
"author": "Michael Lohmann, Daniel Maslowski, Ron Radtke and maintainers of the original library",
"license": "MIT",
"bugs": {
"url": "https://github.com/RonRadtke/react-native-markdown-display/issues"
},
"homepage": "https://github.com/RonRadtke/react-native-markdown-display",
"dependencies": {
"css-to-react-native": "^3.2.0",
"markdown-it": "^13.0.1",
"prop-types": "^15.7.2",
"react-native-fit-image": "^1.5.5"
},
"peerDependencies": {
"react": ">=16.2.0",
"react-native": ">=0.50.4"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/runtime": "^7.21.0",
"@react-native-community/eslint-config": "^3.2.0",
"@types/markdown-it": "^12.2.3",
"@types/react-native": ">=0.50.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.26.0",
"eslint-config-defaults": "^9.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"metro-react-native-babel-preset": "^0.76.0",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"directories": {
"doc": "doc"
}
}