-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.45 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.45 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
{
"name": "react-native-remark",
"version": "0.0.0",
"description": "Remark for React Native",
"main": "dist/index.mjs",
"types": "dist/index.d.mts",
"repository": {
"type": "git",
"url": "git+https://github.com/imwithye/react-native-remark.git"
},
"scripts": {
"build": "tsup",
"format": "prettier --write .",
"lint": "eslint . --no-warn-ignored",
"lint:fix": "eslint . --fix",
"prepare": "tsup"
},
"files": [
"dist",
"docs",
"src",
"README.md"
],
"keywords": [
"react-native",
"remark",
"markdown"
],
"author": "Yiwei Gong",
"license": "MIT",
"dependencies": {
"@expo/vector-icons": "^14.1.0",
"react-syntax-highlighter": "^15.6.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"@types/mdast": "^4.0.4"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-native": ">=0.70.0"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/react": "^19.1.8",
"@types/react-syntax-highlighter": "^15.5.13",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.2.0",
"prettier": "3.5.3",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1"
}
}