@luminalityai/ui 0.7.0 → 0.9.0

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/README.md CHANGED
@@ -12,12 +12,12 @@ npm install @luminalityai/ui
12
12
 
13
13
  ### Peer dependencies
14
14
 
15
- This package requires the following peer dependencies:
15
+ This package declares the following peer dependencies (you must supply them):
16
16
 
17
- - `react` ^19.0.0
18
- - `react-dom` ^19.0.0
19
- - `tailwindcss` ^4.0.0
20
- - `tw-animate-css` ^1.0.0
17
+ - `react` ^19
18
+ - `react-dom` ^19
19
+
20
+ Tailwind CSS v4 and `tailwindcss-animate` are bundled as regular dependencies (wired up in the package's stylesheet), so you do not need to install them yourself.
21
21
 
22
22
  ## Usage
23
23
 
@@ -33,6 +33,9 @@ Import the stylesheet in your CSS:
33
33
 
34
34
  ## Scripts
35
35
 
36
- - `npm run build` compile TypeScript to `dist/`
37
- - `npm run typecheck` — run TypeScript type checking
38
- - `npm run clean` — remove build artifacts
36
+ See the `scripts` block in [`package.json`](./package.json) for the authoritative list. The most common ones:
37
+
38
+ - `npm run build` — build the package to `dist/` with Vite (`vite build`; types emitted via `vite-plugin-dts`)
39
+ - `npm run check` — type-check without emitting (`tsc --noEmit`)
40
+ - `npm run lint` — run ESLint
41
+ - `npm test` — run the Vitest unit suite