-
-
Notifications
You must be signed in to change notification settings - Fork 465
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.21 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.21 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
{
"name": "@react-native-documents/viewer",
"version": "4.0.0",
"description": "A react native interface to preview documents",
"funding": "https://github.com/react-native-documents/document-picker?sponsor=1",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
"exports": {
".": {
"source": "./src/index.ts",
"types": "./lib/typescript/src/index.d.ts",
"default": "./lib/module/index.js"
},
"./package.json": "./package.json"
},
"files": [
"src",
"lib",
"android",
"ios",
"windows",
"cpp",
"LICENSE.md",
"react-native-document-viewer.podspec",
"!lib/typescript/example",
"!android/build",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"jest/build"
],
"scripts": {
"build:mock": "tsc --build jest",
"prepare": "bob build && yarn build:mock"
},
"codegenConfig": {
"name": "rndocumentviewerCGen",
"type": "modules",
"jsSrcsDir": "src/spec",
"android": {
"javaPackageName": "com.reactnativedocumentviewer"
}
},
"keywords": [
"react-native",
"document",
"viewer",
"preview",
"QuickLook"
],
"repository": {
"type": "git",
"url": "git+https://github.com/react-native-documents/document-picker.git"
},
"author": "Vojtech Novak (hello@react-native-training.eu)",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-native-documents/document-picker/issues"
},
"homepage": "https://github.com/react-native-documents/document-picker#readme",
"publishConfig": {
"access": "public",
"provenance": true
},
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"react-native-builder-bob": "^0.40.13",
"typescript": "^5.7.3"
},
"peerDependencies": {
"react": "*",
"react-native": ">=0.79.0"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/lib/"
]
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"module",
{
"esm": true
}
],
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}