-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.29 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
{
"name": "@oleg_svetlichnyi/expo-icloud-storage",
"version": "1.1.3",
"description": "Typed iCloud Drive file operations for Expo iOS apps. Upload, download, list, delete, and track progress in an app iCloud container.",
"main": "build/index.js",
"types": "build/index.d.ts",
"react-native": "build/index.js",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js",
"require": "./build/index.js",
"default": "./build/index.js"
},
"./app.plugin.js": "./app.plugin.js"
},
"files": [
"build",
"ios",
"src",
"expo-module.config.json",
"app.plugin.js",
"README.md",
"LICENSE"
],
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"lint": "expo-module lint",
"test": "expo-module test --passWithNoTests",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module"
},
"keywords": [
"react-native",
"expo",
"expo-icloud-storage",
"ExpoIcloudStorage",
"icloud",
"icloud-drive",
"ios",
"storage",
"file-system",
"file-upload",
"file-download",
"cloud-storage",
"backup",
"expo-module",
"ios-storage",
"react-native-ios"
],
"repository": {
"type": "git",
"url": "git+https://github.com/o-svetlichnyi/expo-icloud-storage.git"
},
"bugs": {
"url": "https://github.com/o-svetlichnyi/expo-icloud-storage/issues"
},
"author": "Oleg Svetlichnyi (https://github.com/o-svetlichnyi)",
"license": "MIT",
"homepage": "https://o-svetlichnyi.github.io/expo-icloud-storage/",
"devDependencies": {
"@types/react": "^18.3.28",
"eslint": "^9.39.4",
"expo-module-scripts": "^55.0.2",
"expo-modules-core": "^55.0.21",
"prettier": "^3.8.1",
"vitepress": "^1.6.4"
},
"peerDependencies": {
"expo": ">=53.0.0",
"react": ">=18.0.0 <20.0.0",
"react-native": ">=0.72.0"
},
"overrides": {
"jsdom": {
"http-proxy-agent": "7.0.2"
},
"minimatch@3.1.5": {
"brace-expansion": "1.1.13"
},
"vitepress": {
"vite": "6.4.2"
}
},
"engines": {
"node": ">=18.0.0"
}
}