UNPKG

react-native-netlog-fab

Version:

Floating action button for network logging in React Native apps.

188 lines (187 loc) 4.68 kB
{ "name": "react-native-netlog-fab", "version": "0.2.0", "description": "Floating action button for network logging in React Native apps.", "keywords": [ "react-native", "network", "logging", "debug", "FAB", "floating-action-button", "network-monitor", "network-inspector", "api-debugging", "http-logger", "network-debugging", "development-tools", "react-native-debugging", "network-requests", "network-responses" ], "main": "./lib/module/index.js", "types": "./lib/typescript/src/index.d.ts", "exports": { ".": { "source": "./src/index.tsx", "types": "./lib/typescript/src/index.d.ts", "default": "./lib/module/index.js" }, "./package.json": "./package.json" }, "files": [ "src", "lib", "android", "ios", "cpp", "*.podspec", "react-native.config.js", "!ios/build", "!android/build", "!android/gradle", "!android/gradlew", "!android/gradlew.bat", "!android/local.properties", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!**/.*" ], "scripts": { "example": "yarn workspace react-native-netlog-fab-example", "test": "jest", "typecheck": "tsc", "lint": "eslint \"**/*.{js,ts,tsx}\"", "clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib", "prepare": "bob build", "release": "release-it --only-version" }, "repository": { "type": "git", "url": "git+https://github.com/AshrazRashid/react-native-netlog-fab.git" }, "author": "Ashraz Rashid <ashraz.developer@gmail.com> (https://github.com/AshrazRashid)", "license": "MIT", "bugs": { "url": "https://github.com/AshrazRashid/react-native-netlog-fab/issues" }, "homepage": "https://github.com/AshrazRashid/react-native-netlog-fab#readme", "publishConfig": { "registry": "https://registry.npmjs.org/" }, "dependencies": { "react-native-gesture-handler": "^2.25.0", "react-native-netlog-fab": "^0.1.7" }, "peerDependencies": { "react": ">=16.8.0", "react-native": ">=0.60.0", "react-native-network-logger": "^2.0.0" }, "devDependencies": { "@commitlint/config-conventional": "^19.8.1", "@eslint/compat": "^1.2.9", "@eslint/eslintrc": "^3.3.1", "@eslint/js": "^9.27.0", "@evilmartians/lefthook": "^1.11.13", "@react-native-community/cli": "18.0.0", "@react-native-community/cli-platform-android": "18.0.0", "@react-native-community/cli-platform-ios": "18.0.0", "@react-native/babel-preset": "0.79.2", "@react-native/eslint-config": "^0.79.2", "@react-native/metro-config": "0.79.2", "@release-it/conventional-changelog": "^10.0.1", "@types/jest": "^29.5.14", "@types/react": "^19.1.4", "@types/react-native": "^0.73.0", "commitlint": "^19.8.1", "del-cli": "^6.0.0", "eslint": "^9.27.0", "eslint-config-prettier": "^10.1.5", "eslint-plugin-prettier": "^5.4.0", "jest": "^29.7.0", "prettier": "^3.5.3", "react": "^19.1.0", "react-native": "^0.79.2", "react-native-builder-bob": "^0.40.11", "react-native-network-logger": "^2.0.0", "release-it": "^19.0.2", "turbo": "^2.5.3", "typescript": "^5.8.3" }, "workspaces": [ "example" ], "packageManager": "yarn@3.6.1", "jest": { "preset": "react-native", "modulePathIgnorePatterns": [ "<rootDir>/example/node_modules", "<rootDir>/lib/" ] }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "release-it": { "git": { "commitMessage": "chore: release ${version}", "tagName": "v${version}" }, "npm": { "publish": true }, "github": { "release": true }, "plugins": { "@release-it/conventional-changelog": { "preset": { "name": "angular" } } } }, "prettier": { "quoteProps": "consistent", "singleQuote": true, "tabWidth": 2, "trailingComma": "es5", "useTabs": false }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ [ "module", { "esm": true } ], [ "typescript", { "project": "tsconfig.build.json" } ] ] }, "codegenConfig": { "name": "NetlogFabSpec", "type": "modules", "jsSrcsDir": "src", "android": { "javaPackageName": "com.netlogfab" } }, "create-react-native-library": { "template": "bob", "languages": "kotlin-objc", "type": "turbo-module", "version": "0.50.3" } }