@zeroin.earth/appwrite-graphql 23.0.1 → 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 +22 -5
- package/react-native/index.cjs +94 -94
- package/react-native/index.d.cts +5174 -16525
- package/react-native/index.d.ts +5175 -16526
- package/react-native/index.js +94 -94
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",
|
|
@@ -35,6 +35,10 @@
|
|
|
35
35
|
"type": "git",
|
|
36
36
|
"url": "git+ssh://git@github.com/zeroin-earth/appwrite-graphql.git"
|
|
37
37
|
},
|
|
38
|
+
"homepage": "https://github.com/zeroin-earth/appwrite-graphql#readme",
|
|
39
|
+
"bugs": {
|
|
40
|
+
"url": "https://github.com/zeroin-earth/appwrite-graphql/issues"
|
|
41
|
+
},
|
|
38
42
|
"author": "Matt Suhay <matthew.suhay@gmail.com>",
|
|
39
43
|
"license": "MIT",
|
|
40
44
|
"scripts": {
|
|
@@ -42,6 +46,8 @@
|
|
|
42
46
|
"prepublishOnly": "bun run tsc && bun run build",
|
|
43
47
|
"tsc": "tsc --noEmit",
|
|
44
48
|
"typecheck": "tsc --noEmit",
|
|
49
|
+
"lint": "eslint . --fix",
|
|
50
|
+
"format": "prettier --write .",
|
|
45
51
|
"test": "bun test --timeout 30000",
|
|
46
52
|
"test:setup": "bun run tests/setup/setup.ts",
|
|
47
53
|
"test:teardown": "bun run tests/setup/teardown.ts"
|
|
@@ -53,7 +59,6 @@
|
|
|
53
59
|
"@tanstack/react-query-persist-client": "^5.90.24",
|
|
54
60
|
"gql.tada": "^1.9.0",
|
|
55
61
|
"graphql": "^16.13.1",
|
|
56
|
-
"graphql-scalars": "^1.24.2",
|
|
57
62
|
"immer": "^11.1.4"
|
|
58
63
|
},
|
|
59
64
|
"peerDependencies": {
|
|
@@ -61,7 +66,7 @@
|
|
|
61
66
|
"@react-native-community/netinfo": "^12.0.1",
|
|
62
67
|
"@tanstack/react-query": "^5.70.0",
|
|
63
68
|
"appwrite": "^23.0.0",
|
|
64
|
-
"react": "19.1.0",
|
|
69
|
+
"react": "^19.1.0",
|
|
65
70
|
"react-native-appwrite": "^0.25.0"
|
|
66
71
|
},
|
|
67
72
|
"peerDependenciesMeta": {
|
|
@@ -94,6 +99,7 @@
|
|
|
94
99
|
"mailpit-api": "^1.7.2",
|
|
95
100
|
"node-appwrite": "^22.1.3",
|
|
96
101
|
"otpauth": "^9.5.0",
|
|
102
|
+
"prettier": "^3.8.1",
|
|
97
103
|
"react": "19.2.4",
|
|
98
104
|
"react-dom": "19.2.4",
|
|
99
105
|
"react-native-appwrite": "^0.25.0",
|
|
@@ -104,5 +110,16 @@
|
|
|
104
110
|
"publishConfig": {
|
|
105
111
|
"access": "public"
|
|
106
112
|
},
|
|
107
|
-
"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
|
+
]
|
|
108
125
|
}
|