forked from iamacup/react-native-markdown-display
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.98 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@ronradtke/react-native-markdown-display",
"version": "9.0.3",
"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": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "node -e \"require('fs').rmSync('dist', {recursive: true, force: true}); require('fs').rmSync('lib', {recursive: true, force: true})\" && tsc -p tsconfig.json",
"format": "prettier -w src",
"format-check": "prettier --check src",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint --cache ./src",
"lint-fix": "ESLINT_USE_FLAT_CONFIG=false eslint --fix --cache ./src",
"test": "jest",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RonRadtke/react-native-markdown-display.git"
},
"keywords": [
"react",
"react-native",
"native",
"markdown",
"commonmark",
"markdown-it",
"input",
"markdown input"
],
"author": "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": {
"@react-native-vector-icons/material-design-icons": "^13.0.0",
"css-to-react-native": "^3.2.0",
"markdown-it": "^14.1.1",
"markdown-it-ins": "^4.0.0",
"prism-react-renderer": "^2.4.1",
"react-native-fit-image": "^1.5.5"
},
"peerDependencies": {
"react": ">=16.2.0",
"react-native": ">=0.50.4"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/runtime": "^7.29.2",
"@react-native/babel-preset": "^0.84.1",
"@react-native/eslint-config": "^0.84.1",
"@types/jest": "^30.0.0",
"@types/markdown-it": "^14.1.2",
"@types/react": "^19.2.14",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"babel-jest": "^30.3.0",
"eslint": "^8.57.1",
"eslint-config-defaults": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-native": "^5.0.0",
"jest": "^30.3.0",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-native": "^0.84.1",
"react-native-accessibility-engine": "^3.2.0",
"react-test-renderer": "^19.2.4",
"typescript": "^6.0.2"
},
"directories": {
"doc": "doc"
}
}