-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.31 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
{
"name": "@daveyplate/supabase-swr-entities",
"homepage": "https://github.com/daveyplate/supabase-swr-entities",
"version": "3.0.22",
"description": "An entity management library for Supabase and SWR",
"type": "module",
"exports": {
"./client": "./src/index",
"./server": "./src/server"
},
"typesVersions": {
"*": {
"client": [
"./dist/index"
],
"server": [
"./dist/server"
]
}
},
"files": [
"src",
"dist"
],
"scripts": {
"build": "npx tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"supabase",
"swr",
"entity",
"management"
],
"author": "LeakedDave",
"license": "ISC",
"devDependencies": {
"@types/uuid": "^10.0.0",
"husky": "^9.1.6",
"typescript": "^5.6.2",
"@supabase/auth-helpers-react": "file:../daveyplate/node_modules/@supabase/auth-helpers-react",
"react": "file:../daveyplate/node_modules/react",
"swr": "file:../daveyplate/node_modules/swr"
},
"peerDependencies": {
"@supabase/auth-helpers-react": ">=0.5.0",
"@supabase/postgrest-js": ">=1.16.0",
"@supabase/supabase-js": ">=2.45.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"swr": ">=2.2.0",
"uuid": ">=9.0.0",
"peerjs": ">=1.5.4",
"@iamtraction/google-translate": ">=2.0.0"
}
}