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
|
{
"name": "@polyfrost/ui",
"version": "0.0.0",
"sideEffects": false,
"exports": {
".": "./src/index.ts",
"./src/forms": "./src/forms/index.ts",
"./postcss": "./style/postcss",
"./tailwind": "./style/tailwind",
"./style": "./style",
"./style/style.scss": "./style/style.scss",
"./package.json": "./package.json"
},
"main": "src/index.ts",
"types": "src/index.ts",
"scripts": {
"typecheck": "tsc -b",
"test": "vitest"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@headlessui/tailwindcss": "^0.2.0",
"@polyfrost/assets": "workspace:*",
"@react-spring/web": "^9.7.3",
"@tailwindcss/forms": "^0.5.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1",
"sonner": "^1.3.1",
"tailwindcss-radix": "^2.8.0",
"ts-pattern": "^5.0.6",
"use-debounce": "^10.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@polyfrost/config": "workspace:*",
"@storybook/types": "^7.6.6",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "~20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32",
"sass": "^1.69.5",
"tailwindcss": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
}
}
|