@buoy-gg/external-sync 2.1.15

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/package.json ADDED
@@ -0,0 +1,78 @@
1
+ {
2
+ "name": "@buoy-gg/external-sync",
3
+ "version": "2.1.15",
4
+ "description": "Generic device-to-desktop sync for Buoy dev tools",
5
+ "main": "lib/commonjs/index.js",
6
+ "module": "lib/module/index.js",
7
+ "types": "lib/typescript/index.d.ts",
8
+ "react-native": "lib/module/index.js",
9
+ "source": "src/index.tsx",
10
+ "exports": {
11
+ ".": {
12
+ "react-native": "./lib/module/index.js",
13
+ "import": {
14
+ "default": "./lib/module/index.js",
15
+ "types": "./lib/typescript/index.d.ts"
16
+ },
17
+ "require": {
18
+ "default": "./lib/commonjs/index.js",
19
+ "types": "./lib/typescript/index.d.ts"
20
+ }
21
+ },
22
+ "./package.json": "./package.json"
23
+ },
24
+ "files": [
25
+ "lib"
26
+ ],
27
+ "sideEffects": false,
28
+ "dependencies": {},
29
+ "peerDependencies": {
30
+ "react": "*",
31
+ "react-native": "*",
32
+ "socket.io-client": ">=4.0.0"
33
+ },
34
+ "devDependencies": {
35
+ "@types/react": "^19.1.0",
36
+ "@types/react-native": "^0.73.0",
37
+ "socket.io-client": "^4.8.1",
38
+ "typescript": "~5.8.3"
39
+ },
40
+ "react-native-builder-bob": {
41
+ "source": "src",
42
+ "output": "lib",
43
+ "targets": [
44
+ [
45
+ "commonjs",
46
+ {
47
+ "sourceMaps": false
48
+ }
49
+ ],
50
+ [
51
+ "module",
52
+ {
53
+ "sourceMaps": false
54
+ }
55
+ ],
56
+ "typescript"
57
+ ]
58
+ },
59
+ "repository": {
60
+ "type": "git",
61
+ "url": "https://github.com/LovesWorking/react-native-buoy.git",
62
+ "directory": "packages/external-sync"
63
+ },
64
+ "bugs": {
65
+ "url": "https://github.com/LovesWorking/react-native-buoy/issues"
66
+ },
67
+ "homepage": "https://github.com/LovesWorking/react-native-buoy/tree/main/packages/external-sync#readme",
68
+ "publishConfig": {
69
+ "access": "public",
70
+ "tag": "latest"
71
+ },
72
+ "scripts": {
73
+ "build": "bob build",
74
+ "typecheck": "tsc --noEmit",
75
+ "clean": "rimraf lib",
76
+ "test": "pnpm run typecheck"
77
+ }
78
+ }