-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.52 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.52 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
{
"name": "openai-react-native",
"version": "0.3.7",
"description": "OpenAI React Native API Client without polyfills",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "./scripts/test"
},
"keywords": [
"openai",
"react-native",
"ios",
"android"
],
"repository": {
"type": "git",
"url": "git+https://github.com/backmesh/openai-react-native.git"
},
"author": "Luis Fernando De Pombo <luis@backmesh.com> (https://backmesh.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/backmesh/openai-react-native/issues"
},
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"jest": {
"preset": "jest-expo",
"testPathIgnorePatterns": [
"openai-node"
],
"moduleNameMapper": {
"^react-native-sse$": "<rootDir>/node_modules/react-native-sse"
}
},
"dependencies": {
"expo-file-system": "^18.0.7",
"openai": "^4.79.1",
"react-native-sse": "^1.2.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@types/jest": "^29.5.14",
"@types/react": "~19.0.7",
"@types/react-test-renderer": "^19.0.0",
"expo": "~52.0.26",
"jest": "^29.2.1",
"jest-expo": "^52.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.5",
"react-test-renderer": "18.2.0",
"typescript": "~5.3.3",
"xmlhttprequest": "^1.8.0"
}
}