@upstash/react-redis-browser 0.0.0
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 +74 -0
- package/dist/index.css +1889 -0
- package/dist/index.d.mts +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +5460 -0
- package/dist/index.mjs +5460 -0
- package/package.json +82 -0
package/package.json
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@upstash/react-redis-browser",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"main": "./dist/index.js",
|
|
5
|
+
"types": "./dist/index.d.ts",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"private": false,
|
|
8
|
+
"publishConfig": {
|
|
9
|
+
"access": "public"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/upstash/react-redis-browser/issues"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://github.com/upstash/react-redis-browser",
|
|
15
|
+
"files": [
|
|
16
|
+
"./dist/**"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "tsup",
|
|
20
|
+
"dev": "vite",
|
|
21
|
+
"lint": "tsc && eslint",
|
|
22
|
+
"fmt": "prettier --write ."
|
|
23
|
+
},
|
|
24
|
+
"lint-staged": {
|
|
25
|
+
"**/*.{js,ts,tsx}": [
|
|
26
|
+
"prettier --write",
|
|
27
|
+
"eslint --fix"
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
|
|
32
|
+
"@monaco-editor/react": "^4.6.0",
|
|
33
|
+
"@radix-ui/react-alert-dialog": "^1.0.5",
|
|
34
|
+
"@radix-ui/react-context-menu": "^2.2.2",
|
|
35
|
+
"@radix-ui/react-dialog": "^1.0.5",
|
|
36
|
+
"@radix-ui/react-dropdown-menu": "^2.1.2",
|
|
37
|
+
"@radix-ui/react-icons": "1.3.0",
|
|
38
|
+
"@radix-ui/react-popover": "^1.0.7",
|
|
39
|
+
"@radix-ui/react-scroll-area": "^1.0.3",
|
|
40
|
+
"@radix-ui/react-select": "^2.0.0",
|
|
41
|
+
"@radix-ui/react-slot": "^1.0.2",
|
|
42
|
+
"@radix-ui/react-toast": "^1.1.5",
|
|
43
|
+
"@radix-ui/react-tooltip": "^1.0.7",
|
|
44
|
+
"@tabler/icons-react": "^3.19.0",
|
|
45
|
+
"@tanstack/react-query": "^5.32.0",
|
|
46
|
+
"@types/bytes": "^3.1.4",
|
|
47
|
+
"@upstash/redis": "^1.31.6",
|
|
48
|
+
"bytes": "^3.1.2",
|
|
49
|
+
"react-hook-form": "^7.53.0",
|
|
50
|
+
"react-resizable-panels": "^2.1.4",
|
|
51
|
+
"zustand": "5.0.0"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@types/node": "^22.8.4",
|
|
55
|
+
"@types/react": "^18.3.12",
|
|
56
|
+
"@types/react-dom": "^18.3.1",
|
|
57
|
+
"@typescript-eslint/eslint-plugin": "8.4.0",
|
|
58
|
+
"@typescript-eslint/parser": "8.4.0",
|
|
59
|
+
"@vitejs/plugin-react": "^4.1.0",
|
|
60
|
+
"autoprefixer": "^10.4.14",
|
|
61
|
+
"class-variance-authority": "^0.7.0",
|
|
62
|
+
"clsx": "^2.0.0",
|
|
63
|
+
"eslint": "9.10.0",
|
|
64
|
+
"eslint-plugin-unicorn": "55.0.0",
|
|
65
|
+
"postcss": "^8.4.31",
|
|
66
|
+
"prettier": "^3.0.3",
|
|
67
|
+
"prettier-plugin-tailwindcss": "^0.5.5",
|
|
68
|
+
"react": "^18.3.1",
|
|
69
|
+
"react-dom": "^18.3.1",
|
|
70
|
+
"tailwind-merge": "^2.5.4",
|
|
71
|
+
"tailwindcss": "^3.4.14",
|
|
72
|
+
"tailwindcss-animate": "^1.0.7",
|
|
73
|
+
"tsup": "^8.3.5",
|
|
74
|
+
"typescript": "^5.0.4",
|
|
75
|
+
"vite": "^5.4.10",
|
|
76
|
+
"vite-tsconfig-paths": "^5.0.1"
|
|
77
|
+
},
|
|
78
|
+
"peerDependencies": {
|
|
79
|
+
"react": "^18.2.0 || ^19",
|
|
80
|
+
"react-dom": "^18.2.0 || ^19"
|
|
81
|
+
}
|
|
82
|
+
}
|