@krosoft/react-supabase 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/README.md.bak +5 -0
- package/package.json +21 -20
package/README.md
CHANGED
|
@@ -1 +1,5 @@
|
|
|
1
1
|
# krosoft-packages-react-supabase
|
|
2
|
+
|
|
3
|
+
[](https://forthebadge.com) [](https://forthebadge.com)
|
|
4
|
+
|
|
5
|
+
Krosoft shared React Supabase package.
|
package/README.md.bak
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# krosoft-packages-react-supabase
|
|
2
|
+
|
|
3
|
+
[](https://forthebadge.com) [](https://forthebadge.com)
|
|
4
|
+
|
|
5
|
+
Krosoft shared React package.
|
package/package.json
CHANGED
|
@@ -1,8 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@krosoft/react-supabase",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "Krosoft shared React Supabase package",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "tsc -p tsconfig.build.json",
|
|
8
|
+
"lint": "eslint .",
|
|
9
|
+
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}'",
|
|
10
|
+
"type-check": "tsc --noEmit",
|
|
11
|
+
"test": "vitest run"
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/krosoft-dev/krosoft-packages-react-supabase.git"
|
|
16
|
+
},
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist"
|
|
22
|
+
],
|
|
6
23
|
"exports": {
|
|
7
24
|
"./contexts": {
|
|
8
25
|
"import": "./dist/contexts/index.js",
|
|
@@ -29,23 +46,14 @@
|
|
|
29
46
|
"types": "./dist/types/index.d.ts"
|
|
30
47
|
}
|
|
31
48
|
},
|
|
32
|
-
"files": [
|
|
33
|
-
"dist"
|
|
34
|
-
],
|
|
35
|
-
"scripts": {
|
|
36
|
-
"build": "tsc -p tsconfig.build.json",
|
|
37
|
-
"lint": "eslint .",
|
|
38
|
-
"type-check": "tsc --noEmit",
|
|
39
|
-
"test": "vitest run"
|
|
40
|
-
},
|
|
41
|
-
"dependencies": {
|
|
42
|
-
"jwt-decode": "^4.0.0"
|
|
43
|
-
},
|
|
44
49
|
"peerDependencies": {
|
|
45
50
|
"react": ">=18.0.0",
|
|
46
51
|
"@supabase/supabase-js": ">=2.0.0",
|
|
47
52
|
"@tanstack/react-query": ">=5.0.0"
|
|
48
53
|
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"jwt-decode": "^4.0.0"
|
|
56
|
+
},
|
|
49
57
|
"devDependencies": {
|
|
50
58
|
"@krosoft/tooling-eslint-react": ">=0.0.2",
|
|
51
59
|
"@krosoft/tooling-prettier": ">=0.0.6",
|
|
@@ -63,12 +71,5 @@
|
|
|
63
71
|
"@testing-library/react": "^16.3.0",
|
|
64
72
|
"@vitejs/plugin-react": "^4.5.2",
|
|
65
73
|
"jsdom": "^26.1.0"
|
|
66
|
-
},
|
|
67
|
-
"repository": {
|
|
68
|
-
"type": "git",
|
|
69
|
-
"url": "git+https://github.com/krosoft-dev/krosoft-packages-react-supabase.git"
|
|
70
|
-
},
|
|
71
|
-
"publishConfig": {
|
|
72
|
-
"access": "public"
|
|
73
74
|
}
|
|
74
75
|
}
|