@handled-ai/design-system 0.9.14 → 0.9.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +24 -9
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@handled-ai/design-system",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.15",
|
|
4
4
|
"description": "Handled UI component library (shadcn-style, New York)",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"packageManager": "pnpm@9.12.0",
|
|
6
7
|
"sideEffects": [
|
|
7
8
|
"**/*.css"
|
|
8
9
|
],
|
|
@@ -94,6 +95,16 @@
|
|
|
94
95
|
"publishConfig": {
|
|
95
96
|
"access": "public"
|
|
96
97
|
},
|
|
98
|
+
"scripts": {
|
|
99
|
+
"dev": "next dev --turbopack",
|
|
100
|
+
"build": "next build",
|
|
101
|
+
"build:lib": "tsup",
|
|
102
|
+
"start": "next start",
|
|
103
|
+
"typecheck": "tsc --noEmit",
|
|
104
|
+
"lint": "next lint",
|
|
105
|
+
"registry:build": "shadcn build",
|
|
106
|
+
"prepublishOnly": "npm run build:lib"
|
|
107
|
+
},
|
|
97
108
|
"peerDependencies": {
|
|
98
109
|
"@nivo/core": ">=0.80.0",
|
|
99
110
|
"@nivo/sankey": ">=0.80.0",
|
|
@@ -165,13 +176,17 @@
|
|
|
165
176
|
"typescript": "^5.9.2",
|
|
166
177
|
"@tanstack/react-virtual": "^3.13.24"
|
|
167
178
|
},
|
|
168
|
-
"
|
|
169
|
-
"
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
"
|
|
174
|
-
|
|
175
|
-
|
|
179
|
+
"pnpm": {
|
|
180
|
+
"overrides": {
|
|
181
|
+
"@types/react": "19.1.2",
|
|
182
|
+
"@types/react-dom": "19.1.2"
|
|
183
|
+
},
|
|
184
|
+
"onlyBuiltDependencies": [
|
|
185
|
+
"@tailwindcss/oxide",
|
|
186
|
+
"esbuild",
|
|
187
|
+
"msw",
|
|
188
|
+
"sharp",
|
|
189
|
+
"unrs-resolver"
|
|
190
|
+
]
|
|
176
191
|
}
|
|
177
192
|
}
|