-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.74 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.74 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
{
"name": "@react-native-firebase/analytics",
"version": "24.0.0",
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
"description": "React Native Firebase - The analytics module provides out of the box support with Google Analytics for Firebase. Integration with the Android & iOS allows for in-depth analytical insight reporting, such as device information, location, user actions and more.",
"main": "./dist/module/index.js",
"types": "./dist/typescript/lib/index.d.ts",
"scripts": {
"build": "genversion --esm --semi lib/version.ts",
"build:clean": "rimraf android/build && rimraf ios/build",
"compile": "bob build",
"prepare": "yarn run build && yarn compile"
},
"repository": {
"type": "git",
"url": "https://github.com/invertase/react-native-firebase/tree/main/packages/analytics"
},
"license": "Apache-2.0",
"keywords": [
"react",
"react-native",
"firebase",
"analytics"
],
"peerDependencies": {
"@react-native-firebase/app": "24.0.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"superstruct": "^2.0.2"
},
"devDependencies": {
"react-native-builder-bob": "^0.40.17"
},
"exports": {
".": {
"source": "./lib/index.ts",
"types": "./dist/typescript/lib/index.d.ts",
"default": "./dist/module/index.js"
},
"./package.json": "./package.json"
},
"react-native-builder-bob": {
"source": "lib",
"output": "dist",
"targets": [
[
"module",
{
"esm": true
}
],
[
"typescript",
{
"tsc": "../../node_modules/.bin/tsc"
}
]
]
},
"eslintIgnore": [
"node_modules/",
"dist/"
]
}