@batono/ui 0.0.4 → 0.0.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +20 -7
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.0-blue.svg)](https://www.typescriptlang.org/)
7
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
8
8
  [![Node.js](https://img.shields.io/badge/node-%3E%3D18-brightgreen.svg)](https://nodejs.org/)
9
- [![codecov](https://codecov.io/gh/batono/ui/branch/main/graph/badge.svg)](https://codecov.io/gh/batono/ui)
9
+ [![codecov](https://codecov.io/gh/batono-js/ui/branch/main/graph/badge.svg)](https://codecov.io/gh/batono-js/ui)
10
10
 
11
11
  `@batono/ui` provides the UI building blocks for the Batono protocol — layout containers, content definitions, and
12
12
  action primitives. It builds on top of `@batono/core` and is designed to be used together with it.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@batono/ui",
3
- "version": "0.0.4",
4
- "description": "",
3
+ "version": "0.0.5",
4
+ "description": "UI primitives for the Batono server-driven interaction protocol.",
5
5
  "license": "MIT",
6
6
  "author": "Pascal Pfeifer <pascal@pfeifer.zone>",
7
7
  "sideEffects": false,
@@ -19,15 +19,28 @@
19
19
  "README.md",
20
20
  "LICENSE"
21
21
  ],
22
- "keywords": [],
22
+ "keywords": [
23
+ "ui-dsl",
24
+ "ui-primitives",
25
+ "layout-system",
26
+ "json-ui",
27
+ "server-driven-ui",
28
+ "interaction-nodes",
29
+ "typed-ui",
30
+ "ui-definition",
31
+ "backend-ui",
32
+ "frontend-agnostic",
33
+ "typescript",
34
+ "batono"
35
+ ],
23
36
  "repository": {
24
37
  "type": "git",
25
- "url": "git+https://github.com/batono/ui.git"
38
+ "url": "git+https://github.com/batono-js/ui.git"
26
39
  },
27
40
  "bugs": {
28
- "url": "https://github.com/batono/ui/issues"
41
+ "url": "https://github.com/batono-js/ui/issues"
29
42
  },
30
- "homepage": "https://github.com/batono/ui#readme",
43
+ "homepage": "https://github.com/batono-js/ui#readme",
31
44
  "engines": {
32
45
  "node": ">=18"
33
46
  },
@@ -48,6 +61,6 @@
48
61
  "typescript": "^5.9.3"
49
62
  },
50
63
  "dependencies": {
51
- "@batono/core": "^0.0.4"
64
+ "@batono/core": "^0.0.5"
52
65
  }
53
66
  }