@uigen-dev/react 0.1.2 → 0.1.8

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 +4 -6
  2. package/package.json +11 -2
package/README.md CHANGED
@@ -7,6 +7,8 @@ npx @uigen-dev/cli serve ./openapi.yaml
7
7
  # → Your UI is live at http://localhost:4400
8
8
  ```
9
9
 
10
+ ![UIGen Demo](https://github.com/darula-hpp/uigen/raw/main/examples/output.gif)
11
+
10
12
  No code. No config. No boilerplate. Just a spec.
11
13
 
12
14
  ---
@@ -163,7 +165,8 @@ uigen/
163
165
  │ ├── react/ # Opinionated React UI layer
164
166
  │ └── cli/ # CLI entry point (Commander.js)
165
167
  ├── examples/
166
- └── petstore.yaml # Demo OpenAPI spec
168
+ ├── twilio_messaging_v1.yaml # Twilio Messaging API spec
169
+ │ └── stripe.yaml # Stripe API spec
167
170
  └── pnpm-workspace.yaml
168
171
  ```
169
172
 
@@ -273,11 +276,6 @@ properties:
273
276
  - [ ] **Plugin API** — register custom adapters, field types, and view strategies as npm packages
274
277
  - [ ] **`uigen ui:config`** — a visual configuration dashboard served alongside your generated UI. Point-and-click theme editing, field label overrides, resource reordering — no YAML editing required
275
278
 
276
- ### ☁️ Cloud (planned)
277
- - [ ] **uigen.cloud** — hosted UIGen. Point at your spec URL, get a shareable, live frontend at a custom domain — no local setup required
278
- - [ ] **GitHub Action** — auto-deploy your generated UI when your spec changes in CI
279
- - [ ] **Enterprise tier** — SSO/SAML, audit logs, RBAC, on-prem deployment
280
-
281
279
  ### 🔭 Further out
282
280
  - [ ] OpenAPI 3.1 support
283
281
  - [ ] GraphQL adapter
package/package.json CHANGED
@@ -1,7 +1,16 @@
1
1
  {
2
2
  "name": "@uigen-dev/react",
3
- "version": "0.1.2",
3
+ "version": "0.1.8",
4
4
  "description": "Auto-generate frontends from OpenAPI specs",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/darula-hpp/uigen.git"
9
+ },
10
+ "homepage": "https://github.com/darula-hpp/uigen#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/darula-hpp/uigen/issues"
13
+ },
5
14
  "files": [
6
15
  "dist",
7
16
  "README.md"
@@ -29,7 +38,7 @@
29
38
  "react-router-dom": "^7.1.0",
30
39
  "tailwind-merge": "^2.5.0",
31
40
  "zod": "^3.24.0",
32
- "@uigen-dev/core": "0.1.2"
41
+ "@uigen-dev/core": "0.1.8"
33
42
  },
34
43
  "devDependencies": {
35
44
  "@tailwindcss/postcss": "^4.2.2",