forked from 3axap4eHko/react-native-katex
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "react-native-katex-v2",
"version": "0.4.0",
"description": "WebView bundled KaTeX",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"clear": "rm -rf build src/katex-script.* src/katex-style.*",
"compile": "node scripts/prebuild.js",
"build": "yarn clear && yarn compile && tsc",
"release": "yarn build && npm version minor && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GleidsonDaniel/react-native-katex.git"
},
"keywords": [],
"author": "Daniel Silva",
"license": "MIT",
"bugs": {
"url": "https://github.com/GleidsonDaniel/react-native-katex/issues"
},
"homepage": "https://github.com/GleidsonDaniel/react-native-katex#readme",
"dependencies": {
"react-native-webview": "11.26.1"
},
"peerDependencies": {
"react": ">=16",
"react-native": "*"
},
"devDependencies": {
"@types/katex": "^0.16.7",
"@types/react": "^18.0.9",
"@types/react-native": "^0.67.6",
"katex": "^0.16.9",
"typescript": "^4.6.4"
}
}