-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.44 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
57
58
59
60
{
"name": "@upstash/react-redis-cli",
"version": "0.0.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/upstash/react-redis-cli/issues"
},
"homepage": "https://github.com/upstash/react-redis-cli",
"files": [
"./dist/**"
],
"scripts": {
"build": "tsup",
"dev": "vite",
"lint": "tsc && eslint",
"fmt": "prettier --write .",
"prepare": "husky"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@types/node": "^18.15.11",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "8.4.0",
"@typescript-eslint/parser": "8.4.0",
"@vitejs/plugin-react": "^4.1.0",
"autoprefixer": "^10.4.14",
"eslint": "9.10.0",
"eslint-plugin-unicorn": "55.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vite": "^4.4.10"
},
"peerDependencies": {
"react": "^18.2.0 || ^19",
"react-dom": "^18.2.0 || ^19"
},
"dependencies": {
"@radix-ui/react-scroll-area": "^1.0.3"
}
}