Skip to content

Commit ccb4c6f

Browse files
committed
docs(schema2ui): reorder README features and set MIT license :godmode:
- Reorder feature bullets and tighten wording in README - Set license to MIT in deno.json
1 parent f7758d1 commit ccb4c6f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ Turns a JSON schema into low-level customizable DOM.
1212

1313
## Features
1414

15-
- **Schema-first** — UI is defined as a tree of nodes (data), so you don’t write imperative DOM code.
1615
- **HTML-native** — Nodes map to real HTML tags and CSS, so you stay close to the platform.
17-
- **Create, then render** — Validate the definition to get a schema, then pass that schema and a container to render.
18-
- **Platform-aware** — The renderer follows HTML rules (e.g. void elements, template, SVG) so the result is valid.
16+
- **Schema-first** — UI is defined as a tree of nodes (data), so you don’t write imperative DOM code.
17+
- **Create, then render** — Validate definition to get a schema, then pass schema and container to render.
18+
- **Platform-aware** — Renderer follows HTML rules (e.g. void elements, template, SVG) so result is valid.
1919

2020
## Installation
2121

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Turns a JSON schema into low-level customizable DOM",
44
"version": "0.1.0",
55
"type": "module",
6-
"license": "Proprietary",
6+
"license": "MIT",
77
"exports": "./src/index.ts",
88
"compilerOptions": {
99
"allowUnreachableCode": false,

0 commit comments

Comments
 (0)