@zeroin.earth/appwrite-graphql 23.0.0 → 23.0.2
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 +148 -174
- package/dist/index.cjs +94 -94
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5172 -16525
- package/dist/index.d.ts +5172 -16525
- package/dist/index.js +94 -94
- package/dist/index.js.map +1 -1
- package/package.json +26 -5
- package/react-native/index.cjs +94 -94
- package/react-native/index.d.cts +5174 -16525
- package/react-native/index.d.ts +5602 -0
- package/react-native/index.js +989 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeroin.earth/appwrite-graphql",
|
|
3
|
-
"version": "23.0.
|
|
4
|
-
"description": "Appwrite
|
|
3
|
+
"version": "23.0.2",
|
|
4
|
+
"description": "React hooks library for Appwrite with offline-first support, powered by @tanstack/react-query",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -17,6 +17,10 @@
|
|
|
17
17
|
}
|
|
18
18
|
},
|
|
19
19
|
"./react-native": {
|
|
20
|
+
"import": {
|
|
21
|
+
"types": "./react-native/index.d.ts",
|
|
22
|
+
"default": "./react-native/index.js"
|
|
23
|
+
},
|
|
20
24
|
"require": {
|
|
21
25
|
"types": "./react-native/index.d.cts",
|
|
22
26
|
"default": "./react-native/index.cjs"
|
|
@@ -31,6 +35,10 @@
|
|
|
31
35
|
"type": "git",
|
|
32
36
|
"url": "git+ssh://git@github.com/zeroin-earth/appwrite-graphql.git"
|
|
33
37
|
},
|
|
38
|
+
"homepage": "https://github.com/zeroin-earth/appwrite-graphql#readme",
|
|
39
|
+
"bugs": {
|
|
40
|
+
"url": "https://github.com/zeroin-earth/appwrite-graphql/issues"
|
|
41
|
+
},
|
|
34
42
|
"author": "Matt Suhay <matthew.suhay@gmail.com>",
|
|
35
43
|
"license": "MIT",
|
|
36
44
|
"scripts": {
|
|
@@ -38,6 +46,8 @@
|
|
|
38
46
|
"prepublishOnly": "bun run tsc && bun run build",
|
|
39
47
|
"tsc": "tsc --noEmit",
|
|
40
48
|
"typecheck": "tsc --noEmit",
|
|
49
|
+
"lint": "eslint . --fix",
|
|
50
|
+
"format": "prettier --write .",
|
|
41
51
|
"test": "bun test --timeout 30000",
|
|
42
52
|
"test:setup": "bun run tests/setup/setup.ts",
|
|
43
53
|
"test:teardown": "bun run tests/setup/teardown.ts"
|
|
@@ -49,7 +59,6 @@
|
|
|
49
59
|
"@tanstack/react-query-persist-client": "^5.90.24",
|
|
50
60
|
"gql.tada": "^1.9.0",
|
|
51
61
|
"graphql": "^16.13.1",
|
|
52
|
-
"graphql-scalars": "^1.24.2",
|
|
53
62
|
"immer": "^11.1.4"
|
|
54
63
|
},
|
|
55
64
|
"peerDependencies": {
|
|
@@ -57,7 +66,7 @@
|
|
|
57
66
|
"@react-native-community/netinfo": "^12.0.1",
|
|
58
67
|
"@tanstack/react-query": "^5.70.0",
|
|
59
68
|
"appwrite": "^23.0.0",
|
|
60
|
-
"react": "19.1.0",
|
|
69
|
+
"react": "^19.1.0",
|
|
61
70
|
"react-native-appwrite": "^0.25.0"
|
|
62
71
|
},
|
|
63
72
|
"peerDependenciesMeta": {
|
|
@@ -90,6 +99,7 @@
|
|
|
90
99
|
"mailpit-api": "^1.7.2",
|
|
91
100
|
"node-appwrite": "^22.1.3",
|
|
92
101
|
"otpauth": "^9.5.0",
|
|
102
|
+
"prettier": "^3.8.1",
|
|
93
103
|
"react": "19.2.4",
|
|
94
104
|
"react-dom": "19.2.4",
|
|
95
105
|
"react-native-appwrite": "^0.25.0",
|
|
@@ -100,5 +110,16 @@
|
|
|
100
110
|
"publishConfig": {
|
|
101
111
|
"access": "public"
|
|
102
112
|
},
|
|
103
|
-
"type": "module"
|
|
113
|
+
"type": "module",
|
|
114
|
+
"sideEffects": false,
|
|
115
|
+
"keywords": [
|
|
116
|
+
"appwrite",
|
|
117
|
+
"graphql",
|
|
118
|
+
"react",
|
|
119
|
+
"react-native",
|
|
120
|
+
"react-query",
|
|
121
|
+
"tanstack",
|
|
122
|
+
"hooks",
|
|
123
|
+
"offline-first"
|
|
124
|
+
]
|
|
104
125
|
}
|