@zeroin.earth/appwrite-graphql 0.16.5 → 23.0.0
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 +574 -159
- package/dist/index.cjs +990 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +16953 -0
- package/dist/index.d.ts +13864 -2911
- package/dist/index.js +680 -145
- package/dist/index.js.map +1 -1
- package/package.json +73 -28
- package/react-native/index.cjs +989 -0
- package/react-native/index.d.cts +16953 -0
- package/dist/index.d.mts +0 -6000
- package/dist/index.mjs +0 -395
- package/dist/index.mjs.map +0 -1
- package/react-native/index.d.ts +0 -6000
- package/react-native/index.js +0 -453
package/package.json
CHANGED
|
@@ -1,10 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeroin.earth/appwrite-graphql",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Appwrite Graphql library, utilizing @tanstack/react-query
|
|
5
|
-
"main": "./dist/index.
|
|
6
|
-
"module": "./dist/index.
|
|
3
|
+
"version": "23.0.0",
|
|
4
|
+
"description": "Appwrite Graphql library, utilizing @tanstack/react-query",
|
|
5
|
+
"main": "./dist/index.cjs",
|
|
6
|
+
"module": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"default": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"require": {
|
|
15
|
+
"types": "./dist/index.d.cts",
|
|
16
|
+
"default": "./dist/index.cjs"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"./react-native": {
|
|
20
|
+
"require": {
|
|
21
|
+
"types": "./react-native/index.d.cts",
|
|
22
|
+
"default": "./react-native/index.cjs"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
},
|
|
8
26
|
"files": [
|
|
9
27
|
"dist",
|
|
10
28
|
"react-native"
|
|
@@ -17,43 +35,70 @@
|
|
|
17
35
|
"license": "MIT",
|
|
18
36
|
"scripts": {
|
|
19
37
|
"build": "tsup && tsup --config tsup.native.config.ts && node post-build.js",
|
|
20
|
-
"
|
|
21
|
-
"prepublishOnly": "yarn tsc && yarn codegen && yarn build",
|
|
38
|
+
"prepublishOnly": "bun run tsc && bun run build",
|
|
22
39
|
"tsc": "tsc --noEmit",
|
|
23
|
-
"
|
|
40
|
+
"typecheck": "tsc --noEmit",
|
|
41
|
+
"test": "bun test --timeout 30000",
|
|
42
|
+
"test:setup": "bun run tests/setup/setup.ts",
|
|
43
|
+
"test:teardown": "bun run tests/setup/teardown.ts"
|
|
24
44
|
},
|
|
25
45
|
"dependencies": {
|
|
26
46
|
"@graphql-typed-document-node/core": "^3.2.0",
|
|
27
|
-
"@tanstack/
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
47
|
+
"@tanstack/query-async-storage-persister": "^5.90.24",
|
|
48
|
+
"@tanstack/react-query-devtools": "^5.91.3",
|
|
49
|
+
"@tanstack/react-query-persist-client": "^5.90.24",
|
|
50
|
+
"gql.tada": "^1.9.0",
|
|
51
|
+
"graphql": "^16.13.1",
|
|
52
|
+
"graphql-scalars": "^1.24.2",
|
|
53
|
+
"immer": "^11.1.4"
|
|
31
54
|
},
|
|
32
55
|
"peerDependencies": {
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"react": "^
|
|
36
|
-
"
|
|
56
|
+
"@react-native-async-storage/async-storage": "^3.0.1",
|
|
57
|
+
"@react-native-community/netinfo": "^12.0.1",
|
|
58
|
+
"@tanstack/react-query": "^5.70.0",
|
|
59
|
+
"appwrite": "^23.0.0",
|
|
60
|
+
"react": "19.1.0",
|
|
61
|
+
"react-native-appwrite": "^0.25.0"
|
|
62
|
+
},
|
|
63
|
+
"peerDependenciesMeta": {
|
|
64
|
+
"react-native-appwrite": {
|
|
65
|
+
"optional": true
|
|
66
|
+
},
|
|
67
|
+
"@react-native-async-storage/async-storage": {
|
|
68
|
+
"optional": true
|
|
69
|
+
},
|
|
70
|
+
"@react-native-community/netinfo": {
|
|
71
|
+
"optional": true
|
|
72
|
+
}
|
|
37
73
|
},
|
|
38
74
|
"devDependencies": {
|
|
39
|
-
"@
|
|
40
|
-
"@
|
|
41
|
-
"@
|
|
75
|
+
"@eslint/js": "^10.0.1",
|
|
76
|
+
"@happy-dom/global-registrator": "^20.8.4",
|
|
77
|
+
"@react-native-async-storage/async-storage": "^3.0.1",
|
|
78
|
+
"@react-native-community/netinfo": "^12.0.1",
|
|
79
|
+
"@tanstack/react-query": "^5.70.0",
|
|
80
|
+
"@testing-library/react": "^16.3.2",
|
|
42
81
|
"@testing-library/react-hooks": "^8.0.1",
|
|
82
|
+
"@types/bun": "1.3.10",
|
|
43
83
|
"@types/identity-obj-proxy": "^3.0.2",
|
|
44
|
-
"@types/
|
|
45
|
-
"
|
|
46
|
-
"
|
|
84
|
+
"@types/react": "^19.2.14",
|
|
85
|
+
"appwrite": "^23.0.0",
|
|
86
|
+
"eslint": "^10.0.3",
|
|
87
|
+
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
88
|
+
"happy-dom": "^20.8.4",
|
|
47
89
|
"identity-obj-proxy": "^3.0.0",
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
90
|
+
"mailpit-api": "^1.7.2",
|
|
91
|
+
"node-appwrite": "^22.1.3",
|
|
92
|
+
"otpauth": "^9.5.0",
|
|
93
|
+
"react": "19.2.4",
|
|
94
|
+
"react-dom": "19.2.4",
|
|
95
|
+
"react-native-appwrite": "^0.25.0",
|
|
96
|
+
"tsup": "^8.4.0",
|
|
97
|
+
"typescript": "^5.9.3",
|
|
98
|
+
"typescript-eslint": "^8.57.0"
|
|
54
99
|
},
|
|
55
100
|
"publishConfig": {
|
|
56
101
|
"access": "public"
|
|
57
102
|
},
|
|
58
|
-
"
|
|
103
|
+
"type": "module"
|
|
59
104
|
}
|