vovk-client 0.0.4-draft.38 → 0.0.4-draft.40
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 +1 -1
- package/fullSchema.cjs +3 -0
- package/fullSchema.d.cts +1 -0
- package/package.json +9 -4
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<source width="300" media="(prefers-color-scheme: light)" srcset="https://vovk.dev/vovk-logo.svg">
|
|
5
5
|
<img width="300" alt="vovk" src="https://vovk.dev/vovk-logo.svg">
|
|
6
6
|
</picture><br>
|
|
7
|
-
<strong>
|
|
7
|
+
<strong>RESTful + RPC = ♥️</strong>
|
|
8
8
|
</p>
|
|
9
9
|
|
|
10
10
|
<p align="center">
|
package/fullSchema.cjs
ADDED
package/fullSchema.d.cts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '.vovk-client/fullSchema.d.cts';
|
package/package.json
CHANGED
|
@@ -1,17 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vovk-client",
|
|
3
|
-
"version": "0.0.4-draft.
|
|
3
|
+
"version": "0.0.4-draft.40",
|
|
4
4
|
"description": "Vovk.ts client",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"npm-publish": "npm publish"
|
|
7
7
|
},
|
|
8
8
|
"main": "./index.cjs",
|
|
9
|
-
"module": "./module.mjs",
|
|
10
9
|
"types": "./module.d.mts",
|
|
11
10
|
"exports": {
|
|
12
11
|
".": {
|
|
13
|
-
"import": "./
|
|
14
|
-
"require": "./index.cjs"
|
|
12
|
+
"import": "./index.cjs",
|
|
13
|
+
"require": "./index.cjs",
|
|
14
|
+
"types": "./module.d.mts"
|
|
15
|
+
},
|
|
16
|
+
"./fullSchema": {
|
|
17
|
+
"import": "./fullSchema.cjs",
|
|
18
|
+
"require": "./fullSchema.cjs",
|
|
19
|
+
"types": "./fullSchema.d.cts"
|
|
15
20
|
}
|
|
16
21
|
},
|
|
17
22
|
"type": "module",
|