forked from jonasmerlin/react-native-markdown-display
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.64 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.64 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
{
"name": "@ukdanceblue/react-native-markdown-display",
"version": "0.1.6",
"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",
"keywords": [
"react",
"react-native",
"native",
"markdown",
"commonmark",
"markdown-it"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ukdanceblue/react-native-markdown-display.git"
},
"private": false,
"license": "MIT",
"author": "Mient-jan Stelling and Tom Pickard + others from the community, ported to TypeScript by Tag Howard",
"type": "module",
"exports": {
".": {
"react-native": "./dist/index.js",
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"check": "npm run lint && npm run format && npm run build -- --noEmit",
"format": "prettier . --check",
"format-fix": "prettier . --write",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"watch": "tsc -w"
},
"dependencies": {
"css-to-react-native": "^3.2.0",
"markdown-it": "^14.1.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/eslint__js": "^8.42.3",
"@types/markdown-it": "^14.1.2",
"@types/react": "^18.0.0",
"eslint": "^9.13.0",
"prettier": "^3.3.3",
"react-native": "^0.76.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.74.0"
}
}