-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
48
49
50
51
52
53
{
"name": "expo-file-dl",
"version": "2.0.0",
"description": "Download files to a specified folder and notify the user while the download is happening and when the download finishes",
"keywords": [
"expo",
"expo-notifications",
"expo-file-downloader",
"file-downloader",
"react-native",
"react-native-file-download"
],
"homepage": "https://github.com/kathawala/expo-file-dl",
"bugs": {
"url": "https://github.com/kathawala/expo-file-dl/issues",
"email": "[email protected]"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"funding": {
"type": "individual",
"url": "https://liberapay.com/kathawala/donate"
},
"repository": {
"type": "git",
"url": "https://github.com/kathawala/expo-file-dl"
},
"author": "Farhan Kathawala <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"prepare": "yarn run build"
},
"dependencies": {
"expo-file-system": "^10.0.0",
"expo-media-library": "^11.0.0",
"expo-notifications": "^0.9.0",
"expo-sharing": "^9.0.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@types/react": "^16.9.56",
"@types/react-native": "^0.63.35",
"react-native-unimodules": "^0.11.0",
"typescript": "^4.0.5"
}
}