-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.68 KB
/
package.json
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
{
"name": "@zeroin.earth/appwrite-graphql",
"version": "0.16.5",
"description": "Appwrite Graphql library, utilizing @tanstack/react-query and inspired by react-appwrite",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"react-native"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/zeroin-earth/appwrite-graphql.git"
},
"author": "Matt Suhay <matthew.suhay@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsup && tsup --config tsup.native.config.ts && node post-build.js",
"codegen": "graphql-codegen --config codegen.ts",
"prepublishOnly": "yarn tsc && yarn codegen && yarn build",
"tsc": "tsc --noEmit",
"test": "jest"
},
"dependencies": {
"@graphql-typed-document-node/core": "^3.2.0",
"@tanstack/react-query": "^5.40.1",
"graphql": "^16.8.1",
"graphql-scalars": "^1.23.0",
"immer": "^10.1.1"
},
"peerDependencies": {
"appwrite": "^15.0.0",
"jotai": "^2.8.3",
"react": "^18.2.0",
"react-native-appwrite": "^0.4.0"
},
"devDependencies": {
"@apollo/client": "^3.10.4",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.6",
"@testing-library/react-hooks": "^8.0.1",
"@types/identity-obj-proxy": "^3.0.2",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"appwrite": "^15.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jotai": "^2.8.3",
"react-native-appwrite": "^0.4.0",
"ts-jest": "^29.1.4",
"tsup": "^8.1.0",
"typescript": "^5.4.5"
},
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@4.1.1"
}