react-native-cloud-storage
Version:
☁️ Save to & read from iCloud and Google Drive using React Native
141 lines (140 loc) • 3.66 kB
JSON
{
"name": "react-native-cloud-storage",
"version": "3.0.1",
"description": "☁️ Save to & read from iCloud and Google Drive using React Native",
"main": "dist/commonjs/index",
"module": "dist/module/index",
"types": "dist/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"dist",
"android",
"ios",
"cpp",
"*.podspec",
"app.plugin.js",
"!dist/typescript/example",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"keywords": [
"react-native",
"ios",
"android",
"icloud",
"google-drive",
"file-system"
],
"scripts": {
"clean": "del-cli android/build ios/build dist",
"build": "pnpm clean && bob build && rm -f dist/commonjs/package.json",
"codegen": "pnpm run codegen:clean && pnpm run codegen:ios && pnpm run codegen:android",
"codegen:clean": "del-cli android/generated ios/generated",
"codegen:ios": "node ../../node_modules/react-native/scripts/generate-codegen-artifacts.js --path . --targetPlatform ios --outputPath ios/generated",
"codegen:android": "node ../../node_modules/react-native/scripts/generate-codegen-artifacts.js --path . --targetPlatform android --outputPath android/generated",
"typecheck": "tsc --noEmit",
"release": "release-it",
"prepack": "cp ../../README.md ./README.md",
"postpack": "rm ./README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kuatsu/react-native-cloud-storage.git"
},
"author": "Kuatsu App Agency <hello@kuatsu.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kuatsu/react-native-cloud-storage/issues"
},
"homepage": "https://github.com/kuatsu/react-native-cloud-storage#readme",
"packageManager": "pnpm@10.28.2",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@expo/config-plugins": "^10.0.2",
"@release-it/conventional-changelog": "^5.0.0",
"@types/react": "~19.2.14",
"react": "19.2.0",
"react-native": "0.83.2",
"react-native-builder-bob": "^0.30.2",
"release-it": "^15.0.0",
"typescript": "~5.9.3"
},
"peerDependencies": {
"expo": ">=48.0.0",
"react": "*",
"react-native": ">=0.76"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
}
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true,
"skipChecks": true,
"versionArgs": [
"--workspaces-update=false"
]
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "angular"
},
"infile": "CHANGELOG.md"
}
}
},
"react-native-builder-bob": {
"source": "src",
"output": "dist",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"codegenConfig": {
"name": "CloudStorageSpec",
"type": "modules",
"jsSrcsDir": "src/specs",
"android": {
"javaPackageName": "com.cloudstorage"
},
"ios": {
"modules": {
"CloudStorageCloudKit": {
"className": "RCTCloudStorageCloudKit"
},
"CloudStorageLocalFileSystem": {
"className": "RCTCloudStorageLocalFileSystem"
}
}
}
}
}