-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.01 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
{
"name": "@edgarbarrantes/supabase-utils",
"version": "0.1.11",
"description": "Utils for data fetching from supabase",
"main": "dist/index.js",
"types": "dist/index.d.js",
"files": [
"/dist"
],
"dependencies": {
"tslib": "^2.3.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"lerna": "^4.0.0",
"prettier": "^2.3.2"
},
"scripts": {
"localPublish": "npm run build; yalc publish --push",
"clean": "lerna clean --yes",
"bootstrap": "lerna bootstrap --hoist",
"lint": "lerna run lint",
"build": "lerna run build",
"test": "lerna run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EdgarBarrantes/supabase-utils.git"
},
"keywords": [
"supabase",
"swr",
"data",
"fetching",
"react",
"nextjs"
],
"author": "Edgar Barrantes",
"license": "ISC",
"bugs": {
"url": "https://github.com/EdgarBarrantes/supabase-utils/issues"
},
"homepage": "https://github.com/EdgarBarrantes/supabase-utils#readme"
}