-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "use-supabase",
"version": "2.0.1",
"description": "This is a simple zero dependencies package that gives you access to your Supabase client using a React hook!",
"author": "Guillaume Bibeau-Laviolette",
"license": "Apache-2.0",
"repository": "https://github.com/gbibeaul/use-supabase",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w"
},
"dependencies": {
"swr": "^1.2.2"
},
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0",
"@supabase/supabase-js": ">= 1.4.1"
},
"devDependencies": {
"@supabase/supabase-js": "^1.4.1",
"@types/react": "^16.3.13",
"@types/react-dom": "^16.0.5",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rollup": "^1.29.0",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-typescript2": "^0.25.3",
"typescript": "^4.2.2"
},
"files": [
"dist"
],
"keywords": [
"react",
"typescript",
"npm",
"supabase"
]
}