@sqlitecloud/drivers 1.0.256-rc.1 → 1.0.276
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -17,10 +17,10 @@ npm install @sqlitecloud/drivers
|
|
|
17
17
|
You also have to install Peer Dependencies
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
npm install @sqlitecloud/drivers react-native-tcp-socket react-native-
|
|
20
|
+
npm install @sqlitecloud/drivers react-native-tcp-socket react-native-quick-base64
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
React Native run
|
|
23
|
+
React Native run iOS
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
26
|
cd ios && pod install && cd .. && npm run ios
|
|
@@ -32,7 +32,7 @@ React Native run Android (without ./ in Windows)
|
|
|
32
32
|
cd android && ./gradlew clean build && cd .. && npm run android
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
-
Expo run
|
|
35
|
+
Expo run iOS
|
|
36
36
|
|
|
37
37
|
```bash
|
|
38
38
|
npx expo prebuild && npx expo run:ios
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sqlitecloud/drivers",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.276",
|
|
4
4
|
"description": "SQLiteCloud drivers for Typescript/Javascript in edge, web and node clients",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -43,19 +43,19 @@
|
|
|
43
43
|
},
|
|
44
44
|
"homepage": "https://github.com/sqlitecloud/sqlitecloud-js#readme",
|
|
45
45
|
"dependencies": {
|
|
46
|
+
"@craftzdog/react-native-buffer": "^6.0.5",
|
|
46
47
|
"buffer": "^6.0.3",
|
|
47
48
|
"eventemitter3": "^5.0.1",
|
|
48
49
|
"jest-html-reporter": "^3.10.2",
|
|
49
50
|
"lz4js": "^0.2.0",
|
|
50
|
-
"react-native-buffer": "^6.0.3",
|
|
51
51
|
"react-native-url-polyfill": "^2.0.0",
|
|
52
52
|
"socket.io": "^4.7.5",
|
|
53
53
|
"socket.io-client": "^4.7.5",
|
|
54
54
|
"whatwg-url": "^14.0.0"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
|
-
"react-native-
|
|
58
|
-
"react-native-
|
|
57
|
+
"react-native-quick-base64": "*",
|
|
58
|
+
"react-native-tcp-socket": "^6.2.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@types/bun": "^1.1.1",
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
"react-native": {
|
|
102
102
|
"whatwg-url": "react-native-url-polyfill",
|
|
103
103
|
"tls": "react-native-tcp-socket",
|
|
104
|
-
"buffer": "react-native-buffer"
|
|
104
|
+
"buffer": "@craftzdog/react-native-buffer"
|
|
105
105
|
},
|
|
106
106
|
"browser": {
|
|
107
107
|
"tls": false
|