@absolutejs/sync-expo 0.0.1

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,81 @@
1
+ {
2
+ "name": "@absolutejs/sync-expo",
3
+ "version": "0.0.1",
4
+ "description": "Expo SQLite, lifecycle, protection, and background-task adapter for @absolutejs/sync",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/absolutejs/sync-expo.git"
8
+ },
9
+ "homepage": "https://github.com/absolutejs/sync-expo",
10
+ "bugs": {
11
+ "url": "https://github.com/absolutejs/sync-expo/issues"
12
+ },
13
+ "type": "module",
14
+ "main": "./dist/index.js",
15
+ "module": "./dist/index.js",
16
+ "types": "./dist/index.d.ts",
17
+ "license": "BSL-1.1",
18
+ "author": "Alex Kahn",
19
+ "publishConfig": {
20
+ "access": "public"
21
+ },
22
+ "exports": {
23
+ ".": {
24
+ "types": "./dist/index.d.ts",
25
+ "import": "./dist/index.js",
26
+ "default": "./dist/index.js"
27
+ },
28
+ "./client": {
29
+ "types": "./dist/client.d.ts",
30
+ "import": "./dist/client.js",
31
+ "default": "./dist/client.js"
32
+ }
33
+ },
34
+ "files": [
35
+ "dist",
36
+ "LICENSE",
37
+ "README.md"
38
+ ],
39
+ "scripts": {
40
+ "build": "rm -rf dist && bun build src/index.ts src/client.ts --outdir dist --sourcemap --target=browser --external @absolutejs/sync --external expo-background-task --external expo-network --external expo-secure-store --external expo-sqlite --external expo-task-manager --external react-native && tsc --project tsconfig.build.json",
41
+ "test": "bun test",
42
+ "typecheck": "tsc --noEmit",
43
+ "format": "prettier --write \"./**/*.{ts,json,md}\"",
44
+ "release": "bun run format && bun run typecheck && bun test && bun run build && npm publish"
45
+ },
46
+ "peerDependencies": {
47
+ "@absolutejs/sync": ">=2.31.0 <3",
48
+ "expo-background-task": ">=57 <58",
49
+ "expo-network": ">=57 <58",
50
+ "expo-secure-store": ">=57 <58",
51
+ "expo-sqlite": ">=57 <58",
52
+ "expo-task-manager": ">=57 <58",
53
+ "react-native": ">=0.86 <0.87"
54
+ },
55
+ "devDependencies": {
56
+ "@absolutejs/sync": "2.31.0",
57
+ "@types/bun": "1.3.14",
58
+ "@types/react": "19.2.2",
59
+ "expo": "57.0.9",
60
+ "expo-background-task": "57.0.14",
61
+ "expo-network": "57.0.1",
62
+ "expo-secure-store": "57.0.2",
63
+ "expo-sqlite": "57.0.2",
64
+ "expo-task-manager": "57.0.14",
65
+ "prettier": "3.5.3",
66
+ "react": "19.2.3",
67
+ "react-native": "0.86.3",
68
+ "typescript": "5.9.3"
69
+ },
70
+ "dependencies": {
71
+ "@noble/ciphers": "^2.3.0"
72
+ },
73
+ "keywords": [
74
+ "absolutejs",
75
+ "sync",
76
+ "expo",
77
+ "sqlite",
78
+ "offline",
79
+ "mobile"
80
+ ]
81
+ }