forked from RonRadtke/react-native-markdown-display
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.03 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.03 KB
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
{
"name": "@rexovolt/react-native-markdown-display",
"version": "10.0.1",
"description": "Markdown renderer for React Native. Forked from @ronradtke/react-native-markdown-display for use by RVMob",
"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/rexovolt/react-native-markdown-display.git"
},
"keywords": [
"react",
"react-native",
"native",
"markdown",
"commonmark",
"markdown-it"
],
"author": "Sophie L, Michael Lohmann, Daniel Maslowski, Ron Radtke and maintainers of the original library",
"license": "MIT",
"bugs": {
"url": "https://github.com/rexovolt/react-native-markdown-display/issues"
},
"homepage": "https://github.com/rexovolt/react-native-markdown-display",
"dependencies": {
"@rexovolt/markdown-it": "^14.2.1",
"css-to-react-native": "^3.2.0"
},
"peerDependencies": {
"react": ">=16.2.0",
"react-native": ">=0.50.4",
"react-native-unistyles": "*"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/runtime": "^7.26.0",
"@react-native/babel-preset": "^0.76.3",
"@react-native/eslint-config": "^0.76.3",
"@react-native/metro-config": "^0.76.3",
"@react-native/typescript-config": "^0.76.3",
"@types/markdown-it": "^14.1.2",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"eslint": "^8.57.1",
"eslint-config-defaults": "^9.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"react": "^18.3.1",
"react-native": "^0.76.6",
"typescript": "^5.7.2"
},
"directories": {
"doc": "doc"
},
"packageManager": "yarn@4.5.3"
}