-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.29 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
{
"name": "@kaelan/supaquery",
"version": "0.0.5",
"description": "Easily integrate Supabase & React Query.",
"main": "dist/index",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "tsc -p tsconfig.json -w",
"build": "npm run build-ts",
"build-ts": "tsc -p tsconfig.json",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaelansmith/supaquery.git"
},
"keywords": [
"supaquery",
"supabase",
"supabase-js",
"supabase.js",
"react query",
"tanstack query",
"supabase-cache-helpers"
],
"author": "Kaelan Smith",
"license": "LGPL-3.0-only",
"bugs": {
"url": "https://github.com/kaelansmith/supaquery/issues"
},
"homepage": "https://github.com/kaelansmith/supaquery#readme",
"devDependencies": {
"@types/node": "^18.18.1",
"@types/react": "^18.3.7",
"tsc-watch": "^5.0.3",
"typescript": "^5.3.2"
},
"peerDependencies": {
"@supabase/postgrest-js": ">= 1.1.x",
"@supabase/supabase-js": ">= 2.7.1",
"react-query": ">= 3.x.x",
"supastruct": ">= 0.1.x"
},
"overrides": {
"@types/scheduler": "< 0.23.0"
}
}