event-storage-ui 1.0.0-alpha.0 → 1.0.0-alpha.1

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 -4
  2. package/package.json +18 -1
package/README.md CHANGED
@@ -4,19 +4,19 @@ This is an admin dashboard for inspecting a running [node-event-storage](https:/
4
4
 
5
5
  ### Dashboard
6
6
 
7
- ![Dashboard](public/screenshots/dashboard.png)
7
+ ![Dashboard](https://raw.githubusercontent.com/albe/node-event-storage-ui/main/public/screenshots/dashboard.png)
8
8
 
9
9
  ### Event Stream
10
10
 
11
- ![Event Stream](public/screenshots/event-stream.png)
11
+ ![Event Stream](https://raw.githubusercontent.com/albe/node-event-storage-ui/main/public/screenshots/event-stream.png)
12
12
 
13
13
  ### Consumers (create and list)
14
14
 
15
- ![Consumers](public/screenshots/consumers-preview-executed.png)
15
+ ![Consumers](https://raw.githubusercontent.com/albe/node-event-storage-ui/main/public/screenshots/consumers-preview-executed.png)
16
16
 
17
17
  ### Event commit/write
18
18
 
19
- ![Write Events](public/screenshots/write-events-filled.png)
19
+ ![Write Events](https://raw.githubusercontent.com/albe/node-event-storage-ui/main/public/screenshots/write-events-filled.png)
20
20
 
21
21
  ## Usage
22
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "event-storage-ui",
3
- "version": "1.0.0-alpha.0",
3
+ "version": "1.0.0-alpha.1",
4
4
  "description": "A simple UI for node event-storage",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -15,8 +15,25 @@
15
15
  "log storage",
16
16
  "admin-ui"
17
17
  ],
18
+ "homepage": "https://github.com/albe/node-event-storage-ui",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/albe/node-event-storage-ui.git"
22
+ },
23
+ "bugs": {
24
+ "url": "https://github.com/albe/node-event-storage-ui/issues"
25
+ },
18
26
  "author": "Alexander Berl",
19
27
  "license": "MIT",
28
+ "maintainers": [
29
+ {
30
+ "name": "Alexander Berl",
31
+ "email": "a.berl@outlook.com"
32
+ }
33
+ ],
34
+ "engines": {
35
+ "node": ">=18.0"
36
+ },
20
37
  "files": [
21
38
  "app/",
22
39
  "helpers/",