-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 4.24 KB
/
package.json
File metadata and controls
138 lines (138 loc) · 4.24 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@genseki/react",
"sideEffects": false,
"type": "module",
"version": "0.1.3",
"files": [
"dist"
],
"exports": {
".": {
"import": "./src/index.ts",
"require": "./src/index.ts",
"types": "./src/index.ts"
},
"./v2": {
"import": "./v2/index.ts",
"require": "./v2/index.ts",
"types": "./v2/index.ts"
},
"./tailwind.css": "./src/react/styles/tailwind.css"
},
"publishConfig": {
"exports": {
".": {
"import": "./dist/src/index.js",
"require": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
},
"./v2": {
"import": "./dist/v2/index.js",
"require": "./dist/v2/index.js",
"types": "./dist/v2/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": {
"@aws-sdk/client-s3": "^3.826.0",
"@aws-sdk/s3-request-presigner": "^3.826.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^5.0.1",
"@intentui/icons": "^1.10.31",
"@internationalized/date": "^3.8.2",
"@phosphor-icons/react": "^2.1.8",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@radix-ui/react-use-controllable-state": "^1.2.2",
"@react-aria/i18n": "^3.12.9",
"@react-aria/visually-hidden": "^3.8.23",
"@react-stately/calendar": "^3.8.2",
"@react-stately/color": "^3.8.6",
"@react-types/shared": "^3.30.0",
"@tanstack/react-query": "^5.71.5",
"@tanstack/react-table": "^8.21.3",
"@tiptap/core": "^2.26.3",
"@tiptap/extension-color": "^2.26.3",
"@tiptap/extension-image": "^2.26.3",
"@tiptap/extension-link": "2.26.3",
"@tiptap/extension-text-align": "^2.26.3",
"@tiptap/extension-text-style": "^2.26.3",
"@tiptap/extension-typography": "^2.26.3",
"@tiptap/extension-underline": "^2.26.3",
"@tiptap/html": "^2.26.3",
"@tiptap/pm": "^2.26.3",
"@tiptap/react": "^2.26.3",
"@tiptap/starter-kit": "^2.26.3",
"@types/node": "^24.0.15",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"cookie-es": "^2.0.0",
"deepmerge-ts": "^7.1.5",
"defu": "^6.1.4",
"input-otp": "^1.4.2",
"motion": "^12.7.4",
"nuqs": "^2.8.3",
"radix3": "^1.1.2",
"react": "^19.2.1",
"react-aria-components": "^1.10.1",
"react-dom": "^19.2.1",
"react-hook-form": "^7.61.1",
"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": "^4.0.11"
},
"devDependencies": {
"@types/json-schema": "^7.0.15",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.3.4",
"color": "^5.0.2",
"react-day-picker": "^9.11.1",
"react-dropzone": "^14.3.8",
"tsup": "^8.5.0",
"type-fest": "^4.38.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.3"
},
"peerDependencies": {
"color": "^5.0.2",
"react": "^19.1.0",
"react-day-picker": "^9.11.1",
"react-dom": "^19.1.0",
"react-dropzone": "^14.3.8",
"zod": "^4.0.11"
}
}