react-native-background-task-manager
Version:
Advanced React Native background task manager with foreground services, scheduling, and geolocation support for Android
110 lines (109 loc) • 3.27 kB
JSON
{
"name": "react-native-background-task-manager",
"version": "1.0.0",
"description": "Advanced React Native background task manager with foreground services, scheduling, and geolocation support for Android",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"react-native-background-task-manager.podspec",
"!lib/typescript/example",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"typescript": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"lint:fix": "eslint \"**/*.{js,ts,tsx}\" --fix",
"format": "prettier --write \"**/*.{js,ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{js,ts,tsx,json,md}\"",
"prepare": "bob build && husky install",
"release": "semantic-release",
"example": "npm --prefix example",
"pods": "cd example && pod-install --quiet",
"bootstrap": "npm run example && npm install && npm run pods",
"validate": "npm run typescript && npm run lint && npm run test",
"precommit": "lint-staged"
},
"keywords": [
"react-native",
"android",
"foreground-service",
"background-service",
"notification",
"geolocation",
"location-tracking",
"background-tasks",
"task-scheduler",
"android-service",
"persistent-notification",
"background-processing"
],
"repository": {
"type": "git",
"url": "https://github.com/paulkiren/react-native-background-task-manager.git"
},
"author": "Your Name <your.email@example.com> (https://github.com/yourusername)",
"license": "MIT",
"bugs": {
"url": "https://github.com/paulkiren/react-native-background-task-manager/issues"
},
"homepage": "https://github.com/paulkiren/react-native-background-task-manager#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@react-native-community/eslint-config": "^3.2.0",
"@types/jest": "^29.5.0",
"@types/react": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.0.0",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "^3.2.0",
"react": "18.2.0",
"react-native": "0.75.0",
"react-native-builder-bob": "^0.23.0",
"semantic-release": "^23.0.0",
"typescript": "^5.3.0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.70.0"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}