-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.44 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.44 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "react-native-radar",
"description": "React Native module for Radar, the leading geofencing and location tracking platform",
"homepage": "https://radar.com",
"license": "Apache-2.0",
"version": "4.1.0",
"main": "dist/index.js",
"files": [
"dist",
"src",
"android",
"ios",
"plugin/build",
"*.podspec",
"react-native.config.js",
"app.plugin.js",
"plugin/build",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"example": "yarn workspace react-native-radar-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",
"copy-assets": "./copyAssets.sh",
"update-version": "node scripts/update-version.js",
"build-all": "npm run update-version && npm run build && npm run copy-assets && npm run build-plugin",
"check-latest-tag": "node ./scripts/check-latest-tag.cjs",
"check-beta-tag": "node ./scripts/check-beta-tag.cjs",
"build-plugin": "tsc --build plugin/",
"build": "tsc"
},
"jest": {
"preset": "react-native",
"clearMocks": true,
"reporters": [
"default",
"jest-junit"
],
"modulePathIgnorePatterns": [
"example",
"example2"
],
"setupFiles": [
"./test/jest.setup.js"
]
},
"peerDependencies": {
"@maplibre/maplibre-react-native": ">=11.0.0-beta.10",
"expo": ">=43.0.5",
"react": ">= 19.1.0",
"react-native": ">= 0.80.0",
"react-native-safe-area-context": "^5.6.2"
},
"peerDependenciesMeta": {
"@maplibre/maplibre-react-native": {
"optional": true
},
"expo": {
"optional": true
},
"react-native-safe-area-context": {
"optional": true
}
},
"devDependencies": {
"@commitlint/config-conventional": "^19.6.0",
"@eslint/compat": "^1.2.7",
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.22.0",
"@evilmartians/lefthook": "^1.5.0",
"@react-native-community/cli": "15.0.0-alpha.2",
"@react-native/babel-preset": "0.79.2",
"@react-native/eslint-config": "^0.78.0",
"@release-it/conventional-changelog": "^9.0.2",
"@types/jest": "^29.5.5",
"@types/node": "^24.3.0",
"@types/react": "^19.0.0",
"commitlint": "^19.6.1",
"del-cli": "^5.1.0",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"expo": "^51.0.0",
"expo-module-scripts": "^3.5.4",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"logkitty": ">=0.7.1",
"metro-react-native-babel-preset": "^0.51.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"react": "19.0.0",
"react-native": "0.79.2",
"typescript": "^5.8.3"
},
"bugs": {
"url": "https://github.com/radarlabs/react-native-radar/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/radarlabs/react-native-radar.git"
},
"dependencies": {
"@babel/runtime": "^7.21.0",
"radar-sdk-js": "^3.7.1"
},
"codegenConfig": {
"name": "RadarSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.radar"
},
"ios": {
"modulesProvider": {
"NativeRadar": "RNRadar"
}
}
}
}