-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.72 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.72 KB
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
{
"name": "@kivotos/next",
"private": true,
"sideEffects": false,
"type": "module",
"main": "./src/index.ts",
"module": "./src/index.ts",
"exports": {
".": "./src/index.ts",
"./tailwind.css": "./src/styles/tailwind.css",
"./postcss.config": "./postcss.config.mjs"
},
"scripts": {
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@hookform/resolvers": "^5.0.1",
"@intentui/icons": "^1.11.0",
"@kivotos/core": "workspace:^",
"@phosphor-icons/react": "^2.1.8",
"@radix-ui/react-slot": "^1.2.0",
"@tanstack/react-query": "^5.71.5",
"@tanstack/react-table": "^8.21.2",
"@tanstack/react-virtual": "^3.13.6",
"ajv": "^8.17.1",
"ajv-errors": "^3.0.0",
"class-variance-authority": "^0.7.1",
"cookie-es": "^2.0.0",
"deepmerge-ts": "^7.1.5",
"drizzle-orm": "^0.41.0",
"input-otp": "^1.4.2",
"motion": "^12.7.4",
"next": "15.2.2",
"radix3": "^1.1.2",
"react": "^19.1.0",
"react-aria-components": "^1.8.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.55.0",
"react-router": "^7.4.1",
"remeda": "^2.21.2",
"sonner": "^2.0.3",
"tailwindcss": "^4.1.3",
"tailwindcss-react-aria-components": "^2.0.0",
"valibot": "^1.0.0",
"zod": "3.24.4",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@types/json-schema": "^7.0.15",
"@types/node": "^22.13.15",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.1",
"clsx": "^2.1.1",
"tailwind-merge": "^3.0.2",
"tailwind-variants": "^1.0.0",
"tw-animate-css": "^1.2.4",
"type-fest": "^4.41.0",
"vitest": "^3.0.9"
}
}