UNPKG

react-native-bootsplash

Version:

Display a bootsplash on your app starts. Hide it when you want.

138 lines (137 loc) 3.38 kB
{ "name": "react-native-bootsplash", "version": "7.3.2", "license": "MIT", "description": "Display a bootsplash on your app starts. Hide it when you want.", "author": "Mathieu Acthernoene <zoontek@gmail.com>", "homepage": "https://github.com/zoontek/react-native-bootsplash", "main": "./dist/commonjs/index.js", "module": "./dist/module/index.js", "types": "./dist/typescript/commonjs/index.d.ts", "exports": { ".": { "import": { "types": "./dist/typescript/module/index.d.ts", "default": "./dist/module/index.js" }, "require": { "types": "./dist/typescript/commonjs/index.d.ts", "default": "./dist/commonjs/index.js" } }, "./expo": { "import": { "types": "./dist/typescript/module/extras/expo.d.ts", "default": "./dist/module/extras/expo.js" }, "require": { "types": "./dist/typescript/commonjs/extras/expo.d.ts", "default": "./dist/commonjs/extras/expo.js" } }, "./package.json": "./package.json", "./app.plugin.js": "./app.plugin.js" }, "files": [ "dist", "android", "ios", "src", "!android/build", "!android/.cxx", "!android/.gradle", "!ios/build", "!src/extras/addon", "RNBootSplash.podspec", "cli.js", "app.plugin.js" ], "bin": "./cli.js", "repository": { "type": "git", "url": "https://github.com/zoontek/react-native-bootsplash.git" }, "keywords": [ "react-native-bootsplash", "react-native", "boot-splash", "bootsplash", "boot-screen", "bootscreen", "splash-screen", "splashscreen", "launch-screen", "launchscreen" ], "scripts": { "clean": "rm -rf dist", "format": "prettier '**/*' -u -w", "lint": "oxlint", "typecheck": "tsc --noEmit", "build": "yarn clean && bob build", "prepack": "prettier '**/*' -u -c && yarn lint && yarn typecheck && yarn build && node ../obfuscator" }, "react-native-builder-bob": { "source": "src", "output": "dist", "targets": [ "typescript", [ "module", { "esm": true } ], [ "commonjs", { "esm": true } ] ] }, "prettier": { "plugins": [ "prettier-plugin-organize-imports" ] }, "peerDependencies": { "react": "*", "react-native": "*" }, "dependencies": { "@expo/config-plugins": "*", "commander": "^14.0.3", "detect-indent": "^6.1.0", "fast-glob": "^3.3.3", "node-html-parser": "^7.1.0", "picocolors": "^1.1.1", "prettier": "^3.8.1", "react-native-is-edge-to-edge": "^1.3.1", "sharp": "^0.35.2", "ts-dedent": "^2.2.0", "xml-formatter": "^3.7.0" }, "devDependencies": { "@babel/core": "^7.25.2", "@babel/preset-env": "^7.25.3", "@types/node": "^20.19.39", "@types/react": "^19.2.0", "@types/semver": "^7.7.1", "oxlint": "^1.59.0", "prettier-plugin-organize-imports": "^4.3.0", "react": "19.2.3", "react-native": "0.84.1", "react-native-builder-bob": "^0.41.0", "semver": "^7.7.4", "typescript": "^5.9.3" }, "codegenConfig": { "name": "RNBootSplashSpec", "type": "modules", "jsSrcsDir": "./src/specs", "android": { "javaPackageName": "com.zoontek.rnbootsplash" } } }