@cogentic-co/ds 0.5.3 → 0.5.5
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 +32 -19
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cogentic-co/ds",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.5",
|
|
4
4
|
"description": "Cogentic Design System — UI components for building modern compliance applications",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -70,6 +70,25 @@
|
|
|
70
70
|
"base-ui",
|
|
71
71
|
"cogentic"
|
|
72
72
|
],
|
|
73
|
+
"scripts": {
|
|
74
|
+
"dev": "next dev --turbopack",
|
|
75
|
+
"build": "next build --turbopack",
|
|
76
|
+
"generate:props": "node --import tsx scripts/generate-props.ts",
|
|
77
|
+
"build:pkg": "tsup",
|
|
78
|
+
"start": "next start",
|
|
79
|
+
"lint": "biome check .",
|
|
80
|
+
"lint:fix": "biome check --write .",
|
|
81
|
+
"format": "biome format --write .",
|
|
82
|
+
"size": "size-limit",
|
|
83
|
+
"size:check": "size-limit --json",
|
|
84
|
+
"test": "vitest run",
|
|
85
|
+
"test:watch": "vitest",
|
|
86
|
+
"test:visual": "playwright test",
|
|
87
|
+
"test:visual:update": "playwright test --update-snapshots",
|
|
88
|
+
"changeset": "changeset",
|
|
89
|
+
"version:bump": "changeset version",
|
|
90
|
+
"prepublishOnly": "pnpm build:pkg"
|
|
91
|
+
},
|
|
73
92
|
"peerDependencies": {
|
|
74
93
|
"next": "^15.0.0 || ^16.0.0",
|
|
75
94
|
"react": "^18.0.0 || ^19.0.0",
|
|
@@ -130,22 +149,16 @@
|
|
|
130
149
|
"vitest": "^4.0.18",
|
|
131
150
|
"vitest-axe": "^0.1.0"
|
|
132
151
|
},
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
"
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
"test": "vitest run",
|
|
145
|
-
"test:watch": "vitest",
|
|
146
|
-
"test:visual": "playwright test",
|
|
147
|
-
"test:visual:update": "playwright test --update-snapshots",
|
|
148
|
-
"changeset": "changeset",
|
|
149
|
-
"version:bump": "changeset version"
|
|
152
|
+
"pnpm": {
|
|
153
|
+
"overrides": {
|
|
154
|
+
"@types/react": "19.2.14",
|
|
155
|
+
"@types/react-dom": "19.2.3"
|
|
156
|
+
},
|
|
157
|
+
"onlyBuiltDependencies": [
|
|
158
|
+
"@tailwindcss/oxide",
|
|
159
|
+
"esbuild",
|
|
160
|
+
"sharp",
|
|
161
|
+
"unrs-resolver"
|
|
162
|
+
]
|
|
150
163
|
}
|
|
151
|
-
}
|
|
164
|
+
}
|