@lsby/net-core-jwt 0.1.12

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.
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/authorization.ts
21
+ var authorization_exports = {};
22
+ __export(authorization_exports, {
23
+ GetAuthorization\u63D2\u4EF6: () => GetAuthorization\u63D2\u4EF6
24
+ });
25
+ module.exports = __toCommonJS(authorization_exports);
26
+ var import_zod = require("zod");
27
+ var import_net_core = require("@lsby/net-core");
28
+ var zod\u7C7B\u578B\u8868\u793A = import_zod.z.object({
29
+ authorization: import_zod.z.string().or(import_zod.z.undefined())
30
+ });
31
+ var GetAuthorization\u63D2\u4EF6 = class extends import_net_core.\u63D2\u4EF6 {
32
+ constructor() {
33
+ super(zod\u7C7B\u578B\u8868\u793A, async (req) => {
34
+ return {
35
+ authorization: req.headers.authorization
36
+ };
37
+ });
38
+ }
39
+ };
40
+ // Annotate the CommonJS export names for ESM import in node:
41
+ 0 && (module.exports = {
42
+ GetAuthorization\u63D2\u4EF6
43
+ });
@@ -0,0 +1,15 @@
1
+ import { z } from 'zod';
2
+ import { 插件 as __ } from '@lsby/net-core';
3
+
4
+ declare let zod类型表示: z.ZodObject<{
5
+ authorization: z.ZodUnion<[z.ZodString, z.ZodUndefined]>;
6
+ }, "strip", z.ZodTypeAny, {
7
+ authorization?: string | undefined;
8
+ }, {
9
+ authorization?: string | undefined;
10
+ }>;
11
+ declare class GetAuthorization插件 extends __<typeof zod类型表示> {
12
+ constructor();
13
+ }
14
+
15
+ export { GetAuthorization插件 };
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/get-token.ts
21
+ var get_token_exports = {};
22
+ __export(get_token_exports, {
23
+ GetToken\u63D2\u4EF6: () => GetToken\u63D2\u4EF6
24
+ });
25
+ module.exports = __toCommonJS(get_token_exports);
26
+ var import_zod = require("zod");
27
+ var import_net_core = require("@lsby/net-core");
28
+ var zod\u7C7B\u578B\u8868\u793A = import_zod.z.object({
29
+ token: import_zod.z.string().or(import_zod.z.undefined())
30
+ });
31
+ var GetToken\u63D2\u4EF6 = class extends import_net_core.\u63D2\u4EF6 {
32
+ constructor() {
33
+ super(zod\u7C7B\u578B\u8868\u793A, async (req) => {
34
+ return {
35
+ token: req.headers.authorization?.replace("Bearer ", "")
36
+ };
37
+ });
38
+ }
39
+ };
40
+ // Annotate the CommonJS export names for ESM import in node:
41
+ 0 && (module.exports = {
42
+ GetToken\u63D2\u4EF6
43
+ });
@@ -0,0 +1,15 @@
1
+ import { z } from 'zod';
2
+ import { 插件 as __ } from '@lsby/net-core';
3
+
4
+ declare let zod类型表示: z.ZodObject<{
5
+ token: z.ZodUnion<[z.ZodString, z.ZodUndefined]>;
6
+ }, "strip", z.ZodTypeAny, {
7
+ token?: string | undefined;
8
+ }, {
9
+ token?: string | undefined;
10
+ }>;
11
+ declare class GetToken插件 extends __<typeof zod类型表示> {
12
+ constructor();
13
+ }
14
+
15
+ export { GetToken插件 };
@@ -0,0 +1,83 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/index.ts
21
+ var src_exports = {};
22
+ __export(src_exports, {
23
+ GetToken\u63D2\u4EF6: () => GetToken\u63D2\u4EF6,
24
+ JWT\u63D2\u4EF6: () => JWT\u63D2\u4EF6
25
+ });
26
+ module.exports = __toCommonJS(src_exports);
27
+
28
+ // src/jwt.ts
29
+ var import_zod = require("zod");
30
+ var import_net_core = require("@lsby/net-core");
31
+ var import_ts_jwt = require("@lsby/ts-jwt");
32
+ var JWT\u89E3\u6790\u63D2\u4EF6 = class extends import_net_core.\u63D2\u4EF6 {
33
+ constructor(\u7C7B\u578B\u8868\u793A, jwt\u5B9E\u4F8B) {
34
+ super(\u7C7B\u578B\u8868\u793A, async (req, _res) => {
35
+ var data = jwt\u5B9E\u4F8B.\u89E3\u6790(req.headers.authorization ?? void 0);
36
+ return data || {};
37
+ });
38
+ }
39
+ };
40
+ var JWT\u7B7E\u540D\u63D2\u4EF6 = class extends import_net_core.\u63D2\u4EF6 {
41
+ constructor(\u7C7B\u578B\u8868\u793A, jwt\u5B9E\u4F8B) {
42
+ super(
43
+ import_zod.z.object({
44
+ signJwt: import_zod.z.function(import_zod.z.tuple([\u7C7B\u578B\u8868\u793A]), import_zod.z.string())
45
+ }),
46
+ async (_req, _res) => {
47
+ var signJwt = (data) => jwt\u5B9E\u4F8B.\u7B7E\u540D(data);
48
+ return { signJwt };
49
+ }
50
+ );
51
+ }
52
+ };
53
+ var JWT\u63D2\u4EF6 = class {
54
+ jwt\u5B9E\u4F8B;
55
+ \u89E3\u6790\u5668;
56
+ \u7B7E\u540D\u5668;
57
+ constructor(\u7C7B\u578B\u8868\u793A, \u5BC6\u94A5, \u8FC7\u671F\u65F6\u95F4) {
58
+ this.jwt\u5B9E\u4F8B = new import_ts_jwt.JWT\u7BA1\u7406\u5668(\u5BC6\u94A5, \u8FC7\u671F\u65F6\u95F4);
59
+ this.\u89E3\u6790\u5668 = new JWT\u89E3\u6790\u63D2\u4EF6(\u7C7B\u578B\u8868\u793A, this.jwt\u5B9E\u4F8B);
60
+ this.\u7B7E\u540D\u5668 = new JWT\u7B7E\u540D\u63D2\u4EF6(\u7C7B\u578B\u8868\u793A, this.jwt\u5B9E\u4F8B);
61
+ }
62
+ };
63
+
64
+ // src/get-token.ts
65
+ var import_zod2 = require("zod");
66
+ var import_net_core2 = require("@lsby/net-core");
67
+ var zod\u7C7B\u578B\u8868\u793A = import_zod2.z.object({
68
+ token: import_zod2.z.string().or(import_zod2.z.undefined())
69
+ });
70
+ var GetToken\u63D2\u4EF6 = class extends import_net_core2.\u63D2\u4EF6 {
71
+ constructor() {
72
+ super(zod\u7C7B\u578B\u8868\u793A, async (req) => {
73
+ return {
74
+ token: req.headers.authorization?.replace("Bearer ", "")
75
+ };
76
+ });
77
+ }
78
+ };
79
+ // Annotate the CommonJS export names for ESM import in node:
80
+ 0 && (module.exports = {
81
+ GetToken\u63D2\u4EF6,
82
+ JWT\u63D2\u4EF6
83
+ });
@@ -0,0 +1,5 @@
1
+ export { JWT插件 } from './jwt.cjs';
2
+ export { GetToken插件 } from './get-token.cjs';
3
+ import 'zod';
4
+ import '@lsby/net-core';
5
+ import '@lsby/ts-jwt';
@@ -0,0 +1,63 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/jwt.ts
21
+ var jwt_exports = {};
22
+ __export(jwt_exports, {
23
+ JWT\u63D2\u4EF6: () => JWT\u63D2\u4EF6
24
+ });
25
+ module.exports = __toCommonJS(jwt_exports);
26
+ var import_zod = require("zod");
27
+ var import_net_core = require("@lsby/net-core");
28
+ var import_ts_jwt = require("@lsby/ts-jwt");
29
+ var JWT\u89E3\u6790\u63D2\u4EF6 = class extends import_net_core.\u63D2\u4EF6 {
30
+ constructor(\u7C7B\u578B\u8868\u793A, jwt\u5B9E\u4F8B) {
31
+ super(\u7C7B\u578B\u8868\u793A, async (req, _res) => {
32
+ var data = jwt\u5B9E\u4F8B.\u89E3\u6790(req.headers.authorization ?? void 0);
33
+ return data || {};
34
+ });
35
+ }
36
+ };
37
+ var JWT\u7B7E\u540D\u63D2\u4EF6 = class extends import_net_core.\u63D2\u4EF6 {
38
+ constructor(\u7C7B\u578B\u8868\u793A, jwt\u5B9E\u4F8B) {
39
+ super(
40
+ import_zod.z.object({
41
+ signJwt: import_zod.z.function(import_zod.z.tuple([\u7C7B\u578B\u8868\u793A]), import_zod.z.string())
42
+ }),
43
+ async (_req, _res) => {
44
+ var signJwt = (data) => jwt\u5B9E\u4F8B.\u7B7E\u540D(data);
45
+ return { signJwt };
46
+ }
47
+ );
48
+ }
49
+ };
50
+ var JWT\u63D2\u4EF6 = class {
51
+ jwt\u5B9E\u4F8B;
52
+ \u89E3\u6790\u5668;
53
+ \u7B7E\u540D\u5668;
54
+ constructor(\u7C7B\u578B\u8868\u793A, \u5BC6\u94A5, \u8FC7\u671F\u65F6\u95F4) {
55
+ this.jwt\u5B9E\u4F8B = new import_ts_jwt.JWT\u7BA1\u7406\u5668(\u5BC6\u94A5, \u8FC7\u671F\u65F6\u95F4);
56
+ this.\u89E3\u6790\u5668 = new JWT\u89E3\u6790\u63D2\u4EF6(\u7C7B\u578B\u8868\u793A, this.jwt\u5B9E\u4F8B);
57
+ this.\u7B7E\u540D\u5668 = new JWT\u7B7E\u540D\u63D2\u4EF6(\u7C7B\u578B\u8868\u793A, this.jwt\u5B9E\u4F8B);
58
+ }
59
+ };
60
+ // Annotate the CommonJS export names for ESM import in node:
61
+ 0 && (module.exports = {
62
+ JWT\u63D2\u4EF6
63
+ });
@@ -0,0 +1,20 @@
1
+ import { z } from 'zod';
2
+ import { 插件 as __ } from '@lsby/net-core';
3
+ import { JWT管理器 as JWT___ } from '@lsby/ts-jwt';
4
+
5
+ declare class JWT解析插件<解析器类型描述Zod extends z.AnyZodObject> extends __<解析器类型描述Zod> {
6
+ constructor(类型表示: 解析器类型描述Zod, jwt实例: JWT___<z.infer<typeof 类型表示>>);
7
+ }
8
+ declare class JWT签名插件<解析器类型描述Zod extends z.AnyZodObject> extends __<z.ZodObject<{
9
+ signJwt: z.ZodFunction<z.ZodTuple<[解析器类型描述Zod], null>, z.ZodString>;
10
+ }>> {
11
+ constructor(类型表示: 解析器类型描述Zod, jwt实例: JWT___<z.infer<typeof 类型表示>>);
12
+ }
13
+ declare class JWT插件<解析器类型描述Zod extends z.AnyZodObject> {
14
+ private jwt实例;
15
+ 解析器: JWT解析插件<解析器类型描述Zod>;
16
+ 签名器: JWT签名插件<解析器类型描述Zod>;
17
+ constructor(类型表示: 解析器类型描述Zod, 密钥: string, 过期时间: string);
18
+ }
19
+
20
+ export { JWT插件 };
@@ -0,0 +1,15 @@
1
+ import { z } from 'zod';
2
+ import { 插件 as __ } from '@lsby/net-core';
3
+
4
+ declare let zod类型表示: z.ZodObject<{
5
+ authorization: z.ZodUnion<[z.ZodString, z.ZodUndefined]>;
6
+ }, "strip", z.ZodTypeAny, {
7
+ authorization?: string | undefined;
8
+ }, {
9
+ authorization?: string | undefined;
10
+ }>;
11
+ declare class GetAuthorization插件 extends __<typeof zod类型表示> {
12
+ constructor();
13
+ }
14
+
15
+ export { GetAuthorization插件 };
@@ -0,0 +1,18 @@
1
+ // src/authorization.ts
2
+ import { z } from "zod";
3
+ import { \u63D2\u4EF6 } from "@lsby/net-core";
4
+ var zod\u7C7B\u578B\u8868\u793A = z.object({
5
+ authorization: z.string().or(z.undefined())
6
+ });
7
+ var GetAuthorization\u63D2\u4EF6 = class extends \u63D2\u4EF6 {
8
+ constructor() {
9
+ super(zod\u7C7B\u578B\u8868\u793A, async (req) => {
10
+ return {
11
+ authorization: req.headers.authorization
12
+ };
13
+ });
14
+ }
15
+ };
16
+ export {
17
+ GetAuthorization\u63D2\u4EF6
18
+ };
@@ -0,0 +1,39 @@
1
+ // src/jwt.ts
2
+ import { z } from "zod";
3
+ import { \u63D2\u4EF6 } from "@lsby/net-core";
4
+ import { JWT\u7BA1\u7406\u5668 } from "@lsby/ts-jwt";
5
+ var JWT\u89E3\u6790\u63D2\u4EF6 = class extends \u63D2\u4EF6 {
6
+ constructor(\u7C7B\u578B\u8868\u793A, jwt\u5B9E\u4F8B) {
7
+ super(\u7C7B\u578B\u8868\u793A, async (req, _res) => {
8
+ var data = jwt\u5B9E\u4F8B.\u89E3\u6790(req.headers.authorization ?? void 0);
9
+ return data || {};
10
+ });
11
+ }
12
+ };
13
+ var JWT\u7B7E\u540D\u63D2\u4EF6 = class extends \u63D2\u4EF6 {
14
+ constructor(\u7C7B\u578B\u8868\u793A, jwt\u5B9E\u4F8B) {
15
+ super(
16
+ z.object({
17
+ signJwt: z.function(z.tuple([\u7C7B\u578B\u8868\u793A]), z.string())
18
+ }),
19
+ async (_req, _res) => {
20
+ var signJwt = (data) => jwt\u5B9E\u4F8B.\u7B7E\u540D(data);
21
+ return { signJwt };
22
+ }
23
+ );
24
+ }
25
+ };
26
+ var JWT\u63D2\u4EF6 = class {
27
+ jwt\u5B9E\u4F8B;
28
+ \u89E3\u6790\u5668;
29
+ \u7B7E\u540D\u5668;
30
+ constructor(\u7C7B\u578B\u8868\u793A, \u5BC6\u94A5, \u8FC7\u671F\u65F6\u95F4) {
31
+ this.jwt\u5B9E\u4F8B = new JWT\u7BA1\u7406\u5668(\u5BC6\u94A5, \u8FC7\u671F\u65F6\u95F4);
32
+ this.\u89E3\u6790\u5668 = new JWT\u89E3\u6790\u63D2\u4EF6(\u7C7B\u578B\u8868\u793A, this.jwt\u5B9E\u4F8B);
33
+ this.\u7B7E\u540D\u5668 = new JWT\u7B7E\u540D\u63D2\u4EF6(\u7C7B\u578B\u8868\u793A, this.jwt\u5B9E\u4F8B);
34
+ }
35
+ };
36
+
37
+ export {
38
+ JWT插件
39
+ };
@@ -0,0 +1,19 @@
1
+ // src/get-token.ts
2
+ import { z } from "zod";
3
+ import { \u63D2\u4EF6 } from "@lsby/net-core";
4
+ var zod\u7C7B\u578B\u8868\u793A = z.object({
5
+ token: z.string().or(z.undefined())
6
+ });
7
+ var GetToken\u63D2\u4EF6 = class extends \u63D2\u4EF6 {
8
+ constructor() {
9
+ super(zod\u7C7B\u578B\u8868\u793A, async (req) => {
10
+ return {
11
+ token: req.headers.authorization?.replace("Bearer ", "")
12
+ };
13
+ });
14
+ }
15
+ };
16
+
17
+ export {
18
+ GetToken插件
19
+ };
@@ -0,0 +1,15 @@
1
+ import { z } from 'zod';
2
+ import { 插件 as __ } from '@lsby/net-core';
3
+
4
+ declare let zod类型表示: z.ZodObject<{
5
+ token: z.ZodUnion<[z.ZodString, z.ZodUndefined]>;
6
+ }, "strip", z.ZodTypeAny, {
7
+ token?: string | undefined;
8
+ }, {
9
+ token?: string | undefined;
10
+ }>;
11
+ declare class GetToken插件 extends __<typeof zod类型表示> {
12
+ constructor();
13
+ }
14
+
15
+ export { GetToken插件 };
@@ -0,0 +1,6 @@
1
+ import {
2
+ GetToken插件
3
+ } from "./chunk-SDYIK55N.js";
4
+ export {
5
+ GetToken\u63D2\u4EF6
6
+ };
@@ -0,0 +1,5 @@
1
+ export { JWT插件 } from './jwt.js';
2
+ export { GetToken插件 } from './get-token.js';
3
+ import 'zod';
4
+ import '@lsby/net-core';
5
+ import '@lsby/ts-jwt';
@@ -0,0 +1,10 @@
1
+ import {
2
+ GetToken插件
3
+ } from "./chunk-SDYIK55N.js";
4
+ import {
5
+ JWT插件
6
+ } from "./chunk-ERC6C4HS.js";
7
+ export {
8
+ GetToken\u63D2\u4EF6,
9
+ JWT\u63D2\u4EF6
10
+ };
@@ -0,0 +1,20 @@
1
+ import { z } from 'zod';
2
+ import { 插件 as __ } from '@lsby/net-core';
3
+ import { JWT管理器 as JWT___ } from '@lsby/ts-jwt';
4
+
5
+ declare class JWT解析插件<解析器类型描述Zod extends z.AnyZodObject> extends __<解析器类型描述Zod> {
6
+ constructor(类型表示: 解析器类型描述Zod, jwt实例: JWT___<z.infer<typeof 类型表示>>);
7
+ }
8
+ declare class JWT签名插件<解析器类型描述Zod extends z.AnyZodObject> extends __<z.ZodObject<{
9
+ signJwt: z.ZodFunction<z.ZodTuple<[解析器类型描述Zod], null>, z.ZodString>;
10
+ }>> {
11
+ constructor(类型表示: 解析器类型描述Zod, jwt实例: JWT___<z.infer<typeof 类型表示>>);
12
+ }
13
+ declare class JWT插件<解析器类型描述Zod extends z.AnyZodObject> {
14
+ private jwt实例;
15
+ 解析器: JWT解析插件<解析器类型描述Zod>;
16
+ 签名器: JWT签名插件<解析器类型描述Zod>;
17
+ constructor(类型表示: 解析器类型描述Zod, 密钥: string, 过期时间: string);
18
+ }
19
+
20
+ export { JWT插件 };
@@ -0,0 +1,6 @@
1
+ import {
2
+ JWT插件
3
+ } from "./chunk-ERC6C4HS.js";
4
+ export {
5
+ JWT\u63D2\u4EF6
6
+ };
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@lsby/net-core-jwt",
3
+ "version": "0.1.12",
4
+ "type": "module",
5
+ "exports": {
6
+ "require": "./dist/cjs/index.cjs",
7
+ "import": "./dist/esm/index.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "build:all": "npm run build:cjs && npm run build:esm",
14
+ "build:cjs": "tsup src/**/*.ts --format cjs --clean --dts -d dist/cjs",
15
+ "build:esm": "tsup src/**/*.ts --format esm --clean --dts -d dist/esm",
16
+ "check:all": "npm run check:format && npm run check:lint && npm run check:type",
17
+ "check:format": "prettier --write .",
18
+ "check:lint": "eslint . --fix",
19
+ "check:type": "tsc --noEmit",
20
+ "check:type:watch": "tsc --noEmit -w",
21
+ "pub:public": "npm run check:all && npm run test:base && npm run build:all && bumpp && npm publish --access public",
22
+ "test:base": "npm run check:all && vitest run",
23
+ "test:coverage": "npm run check:all && vitest run --coverage && open-cli ./coverage/index.html"
24
+ },
25
+ "dependencies": {
26
+ "@lsby/ts-jwt": "^0.0.1"
27
+ },
28
+ "devDependencies": {
29
+ "@ianvs/prettier-plugin-sort-imports": "^4.2.1",
30
+ "@lsby/eslint-config": "^0.1.0",
31
+ "@types/node": "^20.12.10",
32
+ "@vitest/coverage-v8": "^2.0.2",
33
+ "bumpp": "^9.4.1",
34
+ "open-cli": "^8.0.0",
35
+ "prettier": "3.2.5",
36
+ "prettier-plugin-packagejson": "^2.5.0",
37
+ "tsup": "^8.0.2",
38
+ "typescript": "^5.4.5",
39
+ "vitest": "^2.0.2"
40
+ },
41
+ "peerDependencies": {
42
+ "@lsby/net-core": "^0.7.0",
43
+ "@lsby/ts-fp-data": "^0.2.4",
44
+ "zod": "3.23.8"
45
+ },
46
+ "packageManager": "pnpm@9.7.1+sha512.faf344af2d6ca65c4c5c8c2224ea77a81a5e8859cbc4e06b1511ddce2f0151512431dd19e6aff31f2c6a8f5f2aced9bd2273e1fed7dd4de1868984059d2c4247"
47
+ }