@pycolors/ui 1.0.1 → 1.0.3

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.
Files changed (2) hide show
  1. package/README.md +18 -9
  2. package/package.json +15 -16
package/README.md CHANGED
@@ -1,16 +1,23 @@
1
+ ![npm](https://img.shields.io/npm/v/@pycolors/ui)
2
+ ![license](https://img.shields.io/npm/l/@pycolors/ui)
3
+
1
4
  # @pycolors/ui
2
5
 
3
- Production-ready UI primitives for modern SaaS apps — built for
4
- **speed**, **consistency**, and **real-world patterns**.
6
+ > ⚠️ **Read-only mirror**
7
+ >
8
+ > This repository is automatically synced from the **PyColors monorepo**.
9
+ > **Source of truth:** https://github.com/pycolors-io/pycolors/tree/main/packages/ui
10
+ >
11
+ > 👉 Please open issues and pull requests here — they are synced upstream.
5
12
 
6
- - Accessible defaults (Radix + sane patterns)
7
- - Works with Tailwind (tokens-driven styling)
8
- - "Starter-grade" components: Tables, Dialogs, Sheets, Alerts,
9
- Tabs...
10
- - Designed to power the **PyColors SaaS Starter** and future Pro
11
- templates
13
+ Production-ready UI primitives for modern SaaS apps — built for **speed**, **consistency**, and **real-world patterns**.
12
14
 
13
- ------------------------------------------------------------------------
15
+ - Accessible defaults (Radix + sane patterns)
16
+ - Tailwind-friendly (tokens-driven styling)
17
+ - “Starter-grade” components: Tables, Dialogs, Sheets, Alerts, Tabs…
18
+ - Designed to power the **PyColors SaaS Starter** and future Pro templates
19
+
20
+ ---
14
21
 
15
22
  ## Install
16
23
 
@@ -18,6 +25,8 @@ Production-ready UI primitives for modern SaaS apps — built for
18
25
  pnpm add @pycolors/ui
19
26
  # or
20
27
  npm i @pycolors/ui
28
+ # or
29
+ yarn add @pycolors/ui
21
30
  ```
22
31
 
23
32
  ## Peer dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pycolors/ui",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Production-ready UI primitives for modern SaaS apps (Radix + Tailwind-friendly).",
5
5
  "keywords": [
6
6
  "pycolors",
@@ -17,8 +17,7 @@
17
17
  "homepage": "https://pycolors.io",
18
18
  "repository": {
19
19
  "type": "git",
20
- "url": "git+https://github.com/pycolors-io",
21
- "directory": "packages/ui"
20
+ "url": "https://github.com/pycolors-io/pycolors-ui"
22
21
  },
23
22
  "bugs": {
24
23
  "url": "https://github.com/pycolors-io/pycolors-ui/issues"
@@ -42,15 +41,6 @@
42
41
  "publishConfig": {
43
42
  "access": "public"
44
43
  },
45
- "scripts": {
46
- "clean": "rm -rf dist",
47
- "build": "tsc -p tsconfig.json",
48
- "prepublishOnly": "pnpm clean && pnpm build",
49
- "lint": "eslint . --max-warnings 0",
50
- "types:check": "tsc --noEmit",
51
- "verify": "pnpm lint && pnpm types:check && pnpm build",
52
- "generate:component": "turbo gen react-component"
53
- },
54
44
  "peerDependencies": {
55
45
  "react": ">=18",
56
46
  "react-dom": ">=18",
@@ -73,12 +63,21 @@
73
63
  "tailwind-merge": "^3.4.0"
74
64
  },
75
65
  "devDependencies": {
76
- "@repo/eslint-config": "workspace:*",
77
- "@repo/typescript-config": "workspace:*",
78
66
  "@types/node": "^22.15.3",
79
67
  "@types/react": "19.2.2",
80
68
  "@types/react-dom": "19.2.2",
81
69
  "eslint": "^9.39.1",
82
- "typescript": "5.9.2"
70
+ "typescript": "5.9.2",
71
+ "@repo/eslint-config": "0.0.0",
72
+ "@repo/typescript-config": "0.0.0"
73
+ },
74
+ "scripts": {
75
+ "clean": "rm -rf dist",
76
+ "build": "tsc -p tsconfig.json",
77
+ "lint": "eslint . --max-warnings 0",
78
+ "types:check": "tsc --noEmit",
79
+ "verify": "pnpm lint && pnpm types:check && pnpm build",
80
+ "generate:component": "turbo gen react-component",
81
+ "release": "pnpm clean && pnpm build:ts && pnpm publish --access public"
83
82
  }
84
- }
83
+ }