-
Notifications
You must be signed in to change notification settings - Fork 444
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (61 loc) · 1.83 KB
/
package.json
File metadata and controls
62 lines (61 loc) · 1.83 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
{
"name": "react-native-background-geolocation",
"version": "5.1.1",
"description": "The most sophisticated cross-platform background location-tracking & geofencing module with battery-conscious motion-detection intelligence",
"scripts": {
"build": "yarn run build:expo",
"test": "echo \"Error: no test specified\" && exit 1",
"build:expo": "rimraf expo/plugin/build && tsc --build ./expo/plugin",
"docs": "node ./scripts/generate-docs.mjs",
"docs:publish": "./scripts/publish-docs.sh",
"prepublishOnly": "npm run build"
},
"codegenConfig": {
"name": "RNBackgroundGeolocation",
"type": "modules",
"jsSrcsDir": "./src/specs",
"android": {
"javaPackageName": "com.transistorsoft.rnbackgroundgeolocation"
},
"ios": {
"swiftModuleName": "RNBackgroundGeolocation",
"packageName": "RNBackgroundGeolocation"
}
},
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/transistorsoft/react-native-background-geolocation.git"
},
"keywords": [
"react-native",
"react-component",
"ios",
"android",
"background",
"geolocation",
"tracking",
"geofence",
"geofencing"
],
"dependencies": {
"@babel/runtime": "^7.26.0",
"@transistorsoft/background-geolocation-types": "^5.1.0",
"tslib": "^2.6.3"
},
"author": "Chris Scott <chris@transistorsoft.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/transistorsoft/react-native-background-geolocation/issues"
},
"homepage": "https://www.transistorsoft.com/shop/products/react-native-background-geolocation",
"devDependencies": {
"@expo/config-plugins": "^4.1.0",
"@types/node": "^18.11.5",
"chalk": "^4.1.0",
"fs-extra": "^9.1.0",
"path": "^0.12.7",
"rimraf": "^5.0.0",
"typescript": "^5.6.0"
}
}