forked from invertase/react-native-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.84 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
{
"name": "@react-native-firebase/ai",
"version": "23.8.8",
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
"description": "React Native Firebase - Firebase AI is a fully-managed, unified AI development platform for building and using generative AI",
"main": "./dist/module/index.js",
"types": "./dist/typescript/lib/index.d.ts",
"scripts": {
"build": "genversion --esm --semi lib/version.ts",
"build:clean": "rimraf dist",
"compile": "bob build",
"prepare": "yarn tests:ai:mocks && yarn run build && yarn compile"
},
"repository": {
"type": "git",
"url": "https://github.com/invertase/react-native-firebase/tree/main/packages/ai"
},
"license": "Apache-2.0",
"keywords": [
"react",
"react-native",
"firebase",
"firebase-ai",
"ai",
"gemini",
"generative-ai"
],
"peerDependencies": {
"@react-native-firebase/app": "23.8.8"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"devDependencies": {
"@react-native-firebase/app-check": "23.8.8",
"@react-native-firebase/auth": "23.8.8",
"@types/text-encoding": "^0.0.40",
"react-native-builder-bob": "^0.40.17",
"typescript": "^5.9.3"
},
"source": "./lib/index.ts",
"exports": {
".": {
"types": "./dist/typescript/lib/index.d.ts",
"default": "./dist/module/index.js"
}
},
"files": [
"lib",
"dist",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"react-native-builder-bob": {
"source": "lib",
"output": "dist",
"targets": [
[
"module",
{
"esm": true
}
],
"typescript"
]
},
"eslintIgnore": [
"node_modules/",
"dist/"
],
"dependencies": {
"react-native-fetch-api": "^3.0.0",
"text-encoding": "^0.7.0",
"web-streams-polyfill": "^4.2.0"
}
}