forked from dnlsilva/react-native-katex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
39
40
41
42
43
44
45
46
47
{
"name": "react-native-katex",
"version": "0.5.0",
"description": "WebView bundled KaTeX",
"main": "build/index.js",
"types": "build/index.d.ts",
"packageManager": "[email protected]",
"scripts": {
"clear": "rm -rf build src/katex-script.* src/katex-style.*",
"compile": "node scripts/prebuild.js",
"build": "pnpm clear && pnpm compile && tsc",
"release": "pnpm build && npm version minor && npm publish",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beedeez/react-native-katex.git"
},
"keywords": [
"KaTeX",
"React Native",
"WebView",
"Math",
"TeX",
"LaTeX"
],
"author": "Beedeez",
"license": "MIT",
"bugs": {
"url": "https://github.com/beedeez/react-native-katex/issues"
},
"homepage": "https://github.com/beedeez/react-native-katex#readme",
"dependencies": {
"react-native-webview": "11.23.1"
},
"peerDependencies": {
"react": ">=16",
"react-native": "*"
},
"devDependencies": {
"@types/katex": "^0.16.7",
"@types/react": "^18.0.9",
"@types/react-native": "^0.69",
"katex": "^0.16.11",
"typescript": "^4.6.4"
}
}