-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.41 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.41 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@genseki/react",
"sideEffects": false,
"type": "module",
"version": "0.1.0-alpha.2",
"files": [
"dist"
],
"exports": {
".": {
"import": "./src/index.ts",
"require": "./src/index.ts",
"types": "./src/index.ts"
},
"./tailwind.css": "./src/react/styles/tailwind.css"
},
"publishConfig": {
"exports": {
".": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
},
"./tailwind.css": "./dist/src/react/styles/tailwind.css"
}
},
"scripts": {
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc",
"test": "vitest run",
"diagnostics": "tsc --noEmit --extendedDiagnostics",
"bundle": "rm -rf dist && tsc -p tsconfig.bundle.json && pnpm copy-tailwind",
"copy-tailwind": "mkdir -p dist/src/react/styles && cp src/react/styles/tailwind.css dist/src/react/styles"
},
"dependencies": {
"@hookform/resolvers": "^5.0.1",
"@intentui/icons": "^1.10.31",
"@internationalized/date": "^3.8.1",
"@phosphor-icons/react": "^2.1.8",
"@radix-ui/react-slot": "^1.2.0",
"@react-aria/i18n": "^3.12.9",
"@react-aria/visually-hidden": "^3.8.23",
"@react-stately/calendar": "^3.8.1",
"@react-stately/color": "^3.8.6",
"@tiptap/core": "^2.14.0",
"@tiptap/extension-color": "^2.14.0",
"@tiptap/extension-text-align": "^2.14.0",
"@tiptap/extension-text-style": "^2.14.0",
"@tiptap/extension-typography": "^2.14.0",
"@tiptap/extension-underline": "^2.14.0",
"@tiptap/pm": "^2.14.0",
"@tiptap/react": "^2.14.0",
"@tiptap/starter-kit": "^2.14.0",
"clsx": "^2.1.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",
"radix3": "^1.1.2",
"react": "^19.1.0",
"react-aria-components": "^1.7.1",
"react-dom": "^19.1.0",
"react-hook-form": "^7.56.3",
"remeda": "^2.21.2",
"sonner": "^2.0.3",
"tailwind-merge": "^3.0.2",
"tailwind-variants": "^1.0.0",
"tailwindcss": "^4.1.7",
"tailwindcss-react-aria-components": "^2.0.0",
"tw-animate-css": "^1.3.4",
"zod": "3.25.53"
},
"devDependencies": {
"@types/json-schema": "^7.0.15",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.6",
"tsup": "^8.5.0",
"type-fest": "^4.38.0",
"vitest": "^3.0.9"
}
}