@orpc/interop 0.0.0-next.f7af1c4 → 0.0.0-next.f8cfaa5
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 +3 -2
- package/package.json +2 -23
- package/dist/json-schema-typed/draft-07.d.mts +0 -883
- package/dist/json-schema-typed/draft-07.d.ts +0 -883
- package/dist/json-schema-typed/draft-07.mjs +0 -100
- package/dist/json-schema-typed/draft-2019-09.d.mts +0 -1248
- package/dist/json-schema-typed/draft-2019-09.d.ts +0 -1248
- package/dist/json-schema-typed/draft-2019-09.mjs +0 -114
- package/dist/json-schema-typed/draft-2020-12.d.mts +0 -1
- package/dist/json-schema-typed/draft-2020-12.d.ts +0 -1
- package/dist/json-schema-typed/draft-2020-12.mjs +0 -1
- package/dist/json-schema-typed/index.d.mts +0 -1240
- package/dist/json-schema-typed/index.d.ts +0 -1240
- package/dist/json-schema-typed/index.mjs +0 -115
package/README.md
CHANGED
|
@@ -20,6 +20,9 @@
|
|
|
20
20
|
<a href="https://discord.gg/TXEbwRBvQn">
|
|
21
21
|
<img alt="Discord" src="https://img.shields.io/discord/1308966753044398161?color=7389D8&label&logo=discord&logoColor=ffffff" />
|
|
22
22
|
</a>
|
|
23
|
+
<a href="https://deepwiki.com/unnoq/orpc">
|
|
24
|
+
<img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki">
|
|
25
|
+
</a>
|
|
23
26
|
</div>
|
|
24
27
|
|
|
25
28
|
<h3 align="center">Typesafe APIs Made Simple 🪄</h3>
|
|
@@ -70,8 +73,6 @@ A compatibility layer that builds & re-exports upstream packages that don't yet
|
|
|
70
73
|
|
|
71
74
|
**Included packages:**
|
|
72
75
|
|
|
73
|
-
- [json-schema-typed](https://www.npmjs.com/package/json-schema-typed) to address issue [RemyRylan/json-schema-typed#116](https://github.com/RemyRylan/json-schema-typed/issues/116)
|
|
74
|
-
|
|
75
76
|
- [compression](https://www.npmjs.com/package/compression) for esm compatibility
|
|
76
77
|
|
|
77
78
|
## Sponsors
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orpc/interop",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.0-next.
|
|
4
|
+
"version": "0.0.0-next.f8cfaa5",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://orpc.unnoq.com",
|
|
7
7
|
"repository": {
|
|
@@ -14,26 +14,6 @@
|
|
|
14
14
|
"orpc"
|
|
15
15
|
],
|
|
16
16
|
"exports": {
|
|
17
|
-
"./json-schema-typed": {
|
|
18
|
-
"types": "./dist/json-schema-typed/index.d.mts",
|
|
19
|
-
"import": "./dist/json-schema-typed/index.mjs",
|
|
20
|
-
"default": "./dist/json-schema-typed/index.mjs"
|
|
21
|
-
},
|
|
22
|
-
"./json-schema-typed/draft-07": {
|
|
23
|
-
"types": "./dist/json-schema-typed/draft-07.d.mts",
|
|
24
|
-
"import": "./dist/json-schema-typed/draft-07.mjs",
|
|
25
|
-
"default": "./dist/json-schema-typed/draft-07.mjs"
|
|
26
|
-
},
|
|
27
|
-
"./json-schema-typed/draft-2019-09": {
|
|
28
|
-
"types": "./dist/json-schema-typed/draft-2019-09.d.mts",
|
|
29
|
-
"import": "./dist/json-schema-typed/draft-2019-09.mjs",
|
|
30
|
-
"default": "./dist/json-schema-typed/draft-2019-09.mjs"
|
|
31
|
-
},
|
|
32
|
-
"./json-schema-typed/draft-2020-12": {
|
|
33
|
-
"types": "./dist/json-schema-typed/draft-2020-12.d.mts",
|
|
34
|
-
"import": "./dist/json-schema-typed/draft-2020-12.mjs",
|
|
35
|
-
"default": "./dist/json-schema-typed/draft-2020-12.mjs"
|
|
36
|
-
},
|
|
37
17
|
"./compression": {
|
|
38
18
|
"types": "./dist/compression/index.d.mts",
|
|
39
19
|
"import": "./dist/compression/index.mjs",
|
|
@@ -45,8 +25,7 @@
|
|
|
45
25
|
],
|
|
46
26
|
"devDependencies": {
|
|
47
27
|
"@types/compression": "^1.8.1",
|
|
48
|
-
"compression": "^1.8.1"
|
|
49
|
-
"json-schema-typed": "^8.0.1"
|
|
28
|
+
"compression": "^1.8.1"
|
|
50
29
|
},
|
|
51
30
|
"scripts": {
|
|
52
31
|
"build": "unbuild",
|