@livon/schema 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.
- package/README.md +4 -2
- package/package.json +133 -3
package/README.md
CHANGED
|
@@ -5,9 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
[](https://www.npmjs.com/package/@livon/schema)
|
|
7
7
|
[](https://libraries.io/npm/%40livon%2Fschema)
|
|
8
|
-
[](https://github.com/live-input-vector-output-node/livon-ts/actions/workflows/publish.yml)
|
|
9
|
+
[](https://www.bestpractices.dev/projects/12249)
|
|
10
|
+
[](https://snyk.io/test/npm/@livon/schema)
|
|
9
11
|
[](https://www.npmjs.com/package/@livon/schema)
|
|
10
|
-
[](https://www.npmjs.com/package/@livon/schema)
|
|
11
13
|
|
|
12
14
|
## Install
|
|
13
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@livon/schema",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.29.0-rc.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Schema builders, validators, and API definitions for LIVON.",
|
|
@@ -17,6 +17,16 @@
|
|
|
17
17
|
"THIRD_PARTY_NOTICES.md"
|
|
18
18
|
],
|
|
19
19
|
"license": "MIT",
|
|
20
|
+
"author": {
|
|
21
|
+
"name": "LIVON",
|
|
22
|
+
"url": "https://livon.tech"
|
|
23
|
+
},
|
|
24
|
+
"contributors": [
|
|
25
|
+
{
|
|
26
|
+
"name": "cr15p1",
|
|
27
|
+
"url": "https://github.com/cr15p1"
|
|
28
|
+
}
|
|
29
|
+
],
|
|
20
30
|
"repository": {
|
|
21
31
|
"type": "git",
|
|
22
32
|
"url": "git+https://github.com/live-input-vector-output-node/livon-ts.git",
|
|
@@ -29,8 +39,8 @@
|
|
|
29
39
|
"keywords": [
|
|
30
40
|
"livon",
|
|
31
41
|
"schema",
|
|
32
|
-
"validation",
|
|
33
42
|
"api",
|
|
43
|
+
"validation",
|
|
34
44
|
"typescript"
|
|
35
45
|
],
|
|
36
46
|
"exports": {
|
|
@@ -38,10 +48,130 @@
|
|
|
38
48
|
"types": "./dist/index.d.ts",
|
|
39
49
|
"import": "./dist/index.js",
|
|
40
50
|
"require": "./dist/index.cjs"
|
|
51
|
+
},
|
|
52
|
+
"./SchemaValidationError": {
|
|
53
|
+
"types": "./dist/SchemaValidationError.d.ts",
|
|
54
|
+
"import": "./dist/SchemaValidationError.js",
|
|
55
|
+
"require": "./dist/SchemaValidationError.cjs"
|
|
56
|
+
},
|
|
57
|
+
"./schemaFactory": {
|
|
58
|
+
"types": "./dist/schemaFactory.d.ts",
|
|
59
|
+
"import": "./dist/schemaFactory.js",
|
|
60
|
+
"require": "./dist/schemaFactory.cjs"
|
|
61
|
+
},
|
|
62
|
+
"./typeGuards": {
|
|
63
|
+
"types": "./dist/typeGuards.d.ts",
|
|
64
|
+
"import": "./dist/typeGuards.js",
|
|
65
|
+
"require": "./dist/typeGuards.cjs"
|
|
66
|
+
},
|
|
67
|
+
"./string": {
|
|
68
|
+
"types": "./dist/string.d.ts",
|
|
69
|
+
"import": "./dist/string.js",
|
|
70
|
+
"require": "./dist/string.cjs"
|
|
71
|
+
},
|
|
72
|
+
"./number": {
|
|
73
|
+
"types": "./dist/number.d.ts",
|
|
74
|
+
"import": "./dist/number.js",
|
|
75
|
+
"require": "./dist/number.cjs"
|
|
76
|
+
},
|
|
77
|
+
"./boolean": {
|
|
78
|
+
"types": "./dist/boolean.d.ts",
|
|
79
|
+
"import": "./dist/boolean.js",
|
|
80
|
+
"require": "./dist/boolean.cjs"
|
|
81
|
+
},
|
|
82
|
+
"./date": {
|
|
83
|
+
"types": "./dist/date.d.ts",
|
|
84
|
+
"import": "./dist/date.js",
|
|
85
|
+
"require": "./dist/date.cjs"
|
|
86
|
+
},
|
|
87
|
+
"./enumeration": {
|
|
88
|
+
"types": "./dist/enumeration.d.ts",
|
|
89
|
+
"import": "./dist/enumeration.js",
|
|
90
|
+
"require": "./dist/enumeration.cjs"
|
|
91
|
+
},
|
|
92
|
+
"./array": {
|
|
93
|
+
"types": "./dist/array.d.ts",
|
|
94
|
+
"import": "./dist/array.js",
|
|
95
|
+
"require": "./dist/array.cjs"
|
|
96
|
+
},
|
|
97
|
+
"./object": {
|
|
98
|
+
"types": "./dist/object.d.ts",
|
|
99
|
+
"import": "./dist/object.js",
|
|
100
|
+
"require": "./dist/object.cjs"
|
|
101
|
+
},
|
|
102
|
+
"./union": {
|
|
103
|
+
"types": "./dist/union.d.ts",
|
|
104
|
+
"import": "./dist/union.js",
|
|
105
|
+
"require": "./dist/union.cjs"
|
|
106
|
+
},
|
|
107
|
+
"./or": {
|
|
108
|
+
"types": "./dist/or.d.ts",
|
|
109
|
+
"import": "./dist/or.js",
|
|
110
|
+
"require": "./dist/or.cjs"
|
|
111
|
+
},
|
|
112
|
+
"./tuple": {
|
|
113
|
+
"types": "./dist/tuple.d.ts",
|
|
114
|
+
"import": "./dist/tuple.js",
|
|
115
|
+
"require": "./dist/tuple.cjs"
|
|
116
|
+
},
|
|
117
|
+
"./literal": {
|
|
118
|
+
"types": "./dist/literal.d.ts",
|
|
119
|
+
"import": "./dist/literal.js",
|
|
120
|
+
"require": "./dist/literal.cjs"
|
|
121
|
+
},
|
|
122
|
+
"./binary": {
|
|
123
|
+
"types": "./dist/binary.d.ts",
|
|
124
|
+
"import": "./dist/binary.js",
|
|
125
|
+
"require": "./dist/binary.cjs"
|
|
126
|
+
},
|
|
127
|
+
"./api": {
|
|
128
|
+
"types": "./dist/api.d.ts",
|
|
129
|
+
"import": "./dist/api.js",
|
|
130
|
+
"require": "./dist/api.cjs"
|
|
131
|
+
},
|
|
132
|
+
"./operation": {
|
|
133
|
+
"types": "./dist/operation.d.ts",
|
|
134
|
+
"import": "./dist/operation.js",
|
|
135
|
+
"require": "./dist/operation.cjs"
|
|
136
|
+
},
|
|
137
|
+
"./before": {
|
|
138
|
+
"types": "./dist/before.d.ts",
|
|
139
|
+
"import": "./dist/before.js",
|
|
140
|
+
"require": "./dist/before.cjs"
|
|
141
|
+
},
|
|
142
|
+
"./after": {
|
|
143
|
+
"types": "./dist/after.d.ts",
|
|
144
|
+
"import": "./dist/after.js",
|
|
145
|
+
"require": "./dist/after.cjs"
|
|
146
|
+
},
|
|
147
|
+
"./and": {
|
|
148
|
+
"types": "./dist/and.d.ts",
|
|
149
|
+
"import": "./dist/and.js",
|
|
150
|
+
"require": "./dist/and.cjs"
|
|
151
|
+
},
|
|
152
|
+
"./context": {
|
|
153
|
+
"types": "./dist/context.d.ts",
|
|
154
|
+
"import": "./dist/context.js",
|
|
155
|
+
"require": "./dist/context.cjs"
|
|
156
|
+
},
|
|
157
|
+
"./schemaModule": {
|
|
158
|
+
"types": "./dist/schemaModule.d.ts",
|
|
159
|
+
"import": "./dist/schemaModule.js",
|
|
160
|
+
"require": "./dist/schemaModule.cjs"
|
|
161
|
+
},
|
|
162
|
+
"./doc": {
|
|
163
|
+
"types": "./dist/doc.d.ts",
|
|
164
|
+
"import": "./dist/doc.js",
|
|
165
|
+
"require": "./dist/doc.cjs"
|
|
166
|
+
},
|
|
167
|
+
"./types": {
|
|
168
|
+
"types": "./dist/types.d.ts",
|
|
169
|
+
"import": "./dist/types.js",
|
|
170
|
+
"require": "./dist/types.cjs"
|
|
41
171
|
}
|
|
42
172
|
},
|
|
43
173
|
"dependencies": {
|
|
44
|
-
"@livon/runtime": "0.
|
|
174
|
+
"@livon/runtime": "0.29.0-rc.3",
|
|
45
175
|
"msgpackr": "1.11.8"
|
|
46
176
|
}
|
|
47
177
|
}
|