@livon/client 0.28.0-rc.4 → 0.29.0-rc.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 +4 -2
  2. package/package.json +17 -2
package/README.md CHANGED
@@ -5,9 +5,11 @@
5
5
 
6
6
  [![npm](https://img.shields.io/npm/v/%40livon%2Fclient)](https://www.npmjs.com/package/@livon/client)
7
7
  [![dependencies](https://img.shields.io/librariesio/release/npm/%40livon%2Fclient?label=dependencies)](https://libraries.io/npm/%40livon%2Fclient)
8
- [![code quality](https://img.shields.io/github/actions/workflow/status/live-input-vector-output-node/livon-ts/code-quality.yml?branch=main&label=code%20quality)](https://github.com/live-input-vector-output-node/livon-ts/actions/workflows/code-quality.yml)
8
+ [![npm publish](https://img.shields.io/github/actions/workflow/status/live-input-vector-output-node/livon-ts/publish.yml?branch=main&label=npm%20publish)](https://github.com/live-input-vector-output-node/livon-ts/actions/workflows/publish.yml)
9
+ [![OpenSSF Best Practices](https://www.bestpractices.dev/projects/12249/badge)](https://www.bestpractices.dev/projects/12249)
10
+ [![Snyk security](https://snyk.io/test/npm/@livon/client/badge.svg)](https://snyk.io/test/npm/@livon/client)
9
11
  [![package size](https://img.shields.io/npm/unpacked-size/%40livon%2Fclient?label=package%20size)](https://www.npmjs.com/package/@livon/client)
10
- [![license](https://img.shields.io/github/license/live-input-vector-output-node/livon-ts)](https://github.com/live-input-vector-output-node/livon-ts)
12
+ [![license](https://img.shields.io/npm/l/%40livon%2Fclient)](https://www.npmjs.com/package/@livon/client)
11
13
 
12
14
  ## Purpose
13
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@livon/client",
3
- "version": "0.28.0-rc.4",
3
+ "version": "0.29.0-rc.3",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Client runtime and generated client foundations for LIVON.",
@@ -16,6 +16,11 @@
16
16
  "import": "./dist/index.js",
17
17
  "require": "./dist/index.cjs"
18
18
  },
19
+ "./client": {
20
+ "types": "./dist/client.d.ts",
21
+ "import": "./dist/client.js",
22
+ "require": "./dist/client.cjs"
23
+ },
19
24
  "./generate": {
20
25
  "types": "./dist/generate.d.ts",
21
26
  "import": "./dist/generate.js",
@@ -28,6 +33,16 @@
28
33
  "THIRD_PARTY_NOTICES.md"
29
34
  ],
30
35
  "license": "MIT",
36
+ "author": {
37
+ "name": "LIVON",
38
+ "url": "https://livon.tech"
39
+ },
40
+ "contributors": [
41
+ {
42
+ "name": "cr15p1",
43
+ "url": "https://github.com/cr15p1"
44
+ }
45
+ ],
31
46
  "repository": {
32
47
  "type": "git",
33
48
  "url": "git+https://github.com/live-input-vector-output-node/livon-ts.git",
@@ -45,6 +60,6 @@
45
60
  "typescript"
46
61
  ],
47
62
  "dependencies": {
48
- "@livon/runtime": "0.28.0-rc.4"
63
+ "@livon/runtime": "0.29.0-rc.3"
49
64
  }
50
65
  }