forked from joltup/rn-fetch-blob
-
-
Notifications
You must be signed in to change notification settings - Fork 169
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.12 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.12 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
{
"name" : "react-native-blob-util",
"version" : "0.24.7",
"description" : "A module provides upload, download, and files access API. Supports file stream read/write for process large files.",
"main" : "index",
"scripts" : {
"test" : "echo \"Error: no test specified\" && exit 1"
},
"dependencies" : {
"base-64" : "0.1.0",
"glob" : "13.0.1"
},
"keywords" : [
"react-native",
"fetch",
"blob",
"fs",
"upload",
"file",
"download",
"filestream",
"image header",
"android",
"ios",
"file system"
],
"repository" : {
"url" : "https://github.com/RonRadtke/react-native-blob-util"
},
"author" : {
"name" : "RonRadtke",
"username" : "RonRadtke"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ronradtke"
},
"license" : "MIT",
"contributors" : [
"Traviskn <>",
"Ben <benhsieh@catchplay.com>",
"wkh237 <xeiyan@gmail.com>"
],
"devDependencies" : {
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"eslint": "^8.57.1",
"eslint-plugin-ft-flow" : "^3.0.11",
"eslint-plugin-import" : "^2.32.0",
"eslint-plugin-react" : "^7.37.5",
"eslint-plugin-react-native" : "^5.0.0",
"react" : "19.0.0",
"react-native" : "0.78.2",
"react-native-windows" : "0.78.2"
},
"peerDependencies" : {
"react" : "*",
"react-native" : "*"
},
"codegenConfig" : {
"name" : "ReactNativeBlobUtilSpec",
"type" : "modules",
"jsSrcsDir" : "codegenSpecs",
"windows" : {
"namespace" : "ReactNativeBlobUtilCodegen",
"outputDirectory" : "windows/ReactNativeBlobUtil/codegen",
"separateDataTypes" : true
}
},
"react-native-windows" : {
"init-windows" : {
"name" : "ReactNativeBlobUtil",
"namespace" : "ReactNativeBlobUtil",
"template" : "cpp-lib"
}
}
}