-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.88 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.88 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "react-native-pdf-jsi",
"version": "4.4.2",
"summary": "High-performance React Native PDF viewer with JSI acceleration - up to 80x faster than traditional bridge",
"description": "🚀 Ultra-fast React Native PDF viewer with JSI (JavaScript Interface) integration for maximum performance. Features lazy loading, smart caching, progressive loading, and zero-bridge overhead operations. Perfect for large PDF files with 30-day persistent cache and advanced memory optimization. Google Play 16KB page size compliant for Android 15+. Supports iOS, Android, and Windows platforms.",
"main": "index.js",
"typings": "./index.d.ts",
"app": {
"plugin": "./plugin/build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/126punith/react-native-pdf-jsi.git"
},
"keywords": [
"react-native-pdf",
"react-native-pdf-viewer",
"react-native-pdf-jsi",
"react-native-pdf-enhanced",
"pdf-viewer",
"pdf-reader",
"pdf-view",
"react-component",
"react-native",
"react-native-module",
"react-native-library",
"android",
"ios",
"windows",
"pdf",
"view",
"viewer",
"jsi",
"javascript-interface",
"performance",
"enhanced",
"native",
"bridge",
"high-performance",
"fast-pdf",
"lazy-loading",
"smart-caching",
"progressive-loading",
"memory-optimization",
"zero-bridge",
"native-module",
"cross-platform",
"mobile",
"document-viewer",
"pdf-renderer",
"pdf-display",
"large-files",
"optimization",
"caching",
"persistent-cache",
"react-native-pdf-jsi-enhanced",
"expo",
"expo-plugin"
],
"author": {
"name": "Punith M",
"email": "[email protected]",
"url": "https://github.com/126punith"
},
"license": "MIT",
"homepage": "https://github.com/126punith/react-native-pdf-jsi",
"bugs": {
"url": "https://github.com/126punith/react-native-pdf-jsi/issues"
},
"dependencies": {
"crypto-js": "4.2.0",
"deprecated-react-native-prop-types": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/runtime": "^7.20.1",
"@expo/config-plugins": "^9.0.0",
"prop-types": "^15.7.2",
"typescript": "^5.0.0"
},
"scripts": {
"build:plugin": "tsc -p plugin/tsconfig.json",
"prepublishOnly": "npm run build:plugin",
"clean:for-publish": "node -e \"const fs=require('fs'),path=require('path');['android/.cxx','android/.gradle','android/build'].forEach(p=>{try{fs.rmSync(path.join(__dirname,p),{recursive:true});console.log('Removed',p);}catch(e){}})\"",
"prepack": "npm run clean:for-publish"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": ">=1.17.0",
"react": "*",
"react-native": "*",
"react-native-blob-util": ">=0.13.7"
},
"files": [
"android/",
"ios/",
"windows/",
"src/",
"plugin/",
"app.plugin.js",
"DoubleTapView.js",
"index.d.ts",
"index.js",
"index.js.flow",
"PdfManager.js",
"PdfPageView.js",
"PdfView.js",
"PdfViewFlatList.js",
"PinchZoomView.js",
"react-native-pdf-jsi.podspec",
"fabric/",
"README.md",
"README_JSI.md",
"LICENSE"
],
"codegenConfig": {
"name": "rnpdf",
"type": "components",
"jsSrcsDir": "./fabric",
"android": {
"javaPackageName": "org.wonday.pdf"
},
"ios": {
"componentProvider": {
"RNPDFPdfView": "RNPDFPdfView"
}
}
}
}