-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.57 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@zeroin.earth/appwrite-graphql",
"version": "25.2.0",
"description": "React hooks library for Appwrite with offline-first support, powered by @tanstack/react-query",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./react-native": {
"import": {
"types": "./react-native/index.d.ts",
"default": "./react-native/index.js"
},
"require": {
"types": "./react-native/index.d.cts",
"default": "./react-native/index.cjs"
}
}
},
"files": [
"dist",
"react-native"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/zeroin-earth/appwrite-graphql.git"
},
"homepage": "https://github.com/zeroin-earth/appwrite-graphql#readme",
"bugs": {
"url": "https://github.com/zeroin-earth/appwrite-graphql/issues"
},
"author": "Matt Suhay <matthew.suhay@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsup && tsup --config tsup.native.config.ts && node post-build.js",
"prepublishOnly": "bun run tsc && bun run build",
"tsc": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"lint": "eslint . --fix",
"format": "prettier --write .",
"test": "bun test --timeout 30000",
"test:setup": "bun run tests/setup/setup.ts",
"test:teardown": "bun run tests/setup/teardown.ts",
"test:docker": "docker compose -f tests/docker-compose.yml up -d"
},
"dependencies": {
"@graphql-typed-document-node/core": "^3.2.0",
"@tanstack/query-async-storage-persister": "^5.100.14",
"@tanstack/react-query-devtools": "^5.100.14",
"@tanstack/react-query-persist-client": "^5.100.14",
"gql.tada": "^1.9.2",
"graphql": "^16.14.0",
"immer": "^11.1.8"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": "^3.0.1",
"@react-native-community/netinfo": "^12.0.1",
"@tanstack/react-query": "^5.100.14",
"appwrite": "25.2.0",
"react": "^19.2.6",
"react-native-appwrite": "^0.27.1"
},
"peerDependenciesMeta": {
"react-native-appwrite": {
"optional": true
},
"@react-native-async-storage/async-storage": {
"optional": true
},
"@react-native-community/netinfo": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@happy-dom/global-registrator": "^20.9.0",
"@react-native-async-storage/async-storage": "^3.1.0",
"@react-native-community/netinfo": "^12.0.1",
"@tanstack/react-query": "^5.100.14",
"@testing-library/react": "^16.3.2",
"@testing-library/react-hooks": "^8.0.1",
"@types/bun": "1.3.14",
"@types/identity-obj-proxy": "^3.0.2",
"@types/react": "^19.2.15",
"appwrite": "25.2.0",
"eslint": "^10.4.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"happy-dom": "^20.9.0",
"identity-obj-proxy": "^3.0.0",
"mailpit-api": "^1.9.1",
"node-appwrite": "^25.2.0",
"otpauth": "^9.5.1",
"prettier": "^3.8.3",
"react": "19.2.6",
"react-dom": "19.2.6",
"react-native-appwrite": "^0.31.0",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"sideEffects": false,
"keywords": [
"appwrite",
"graphql",
"react",
"react-native",
"react-query",
"tanstack",
"hooks",
"offline-first"
]
}