-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.51 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
61
62
63
64
65
66
{
"name": "rewind-ui",
"private": false,
"version": "0.0.7",
"type": "module",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"keywords": [
"react",
"tailwind",
"formiz",
"headless-ui",
"reat-select",
"ui"
],
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"prepare": "npm run build",
"preview": "vite preview"
},
"dependencies": {
"@headlessui/react": "^1.7.15",
"class-variance-authority": "^0.6.1",
"clsx": "^1.2.1",
"i18next": "^23.2.7",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.0.1",
"react-select": "^5.7.3",
"tailwind-merge": "^1.13.2",
"tailwindcss": "^3.2.4",
"use-debouncy": "^4.4.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.0.2",
"@tanstack/react-query": "^4.29.19",
"@types/lodash": "^4.14.195",
"@types/node": "^20.3.3",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.20",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.3.0",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.7.1"
}
}