@fctc/widget-logic 3.4.6 → 3.4.7
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/dist/hooks.d.mts +2 -1
- package/dist/hooks.d.ts +2 -1
- package/dist/hooks.js +11 -5
- package/dist/hooks.mjs +11 -5
- package/dist/index.js +11 -5
- package/dist/index.mjs +11 -5
- package/package.json +94 -94
package/dist/hooks.d.mts
CHANGED
|
@@ -40,9 +40,10 @@ interface ActionResult {
|
|
|
40
40
|
url?: string;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
declare const useMenu: ({ context, specification, domain, }: {
|
|
43
|
+
declare const useMenu: ({ context, specification, domain, defaultService, }: {
|
|
44
44
|
context?: any;
|
|
45
45
|
specification?: any;
|
|
46
|
+
defaultService?: any;
|
|
46
47
|
domain?: any;
|
|
47
48
|
}) => UseMenuReturn;
|
|
48
49
|
type useMenuType = ReturnType<typeof useMenu>;
|
package/dist/hooks.d.ts
CHANGED
|
@@ -40,9 +40,10 @@ interface ActionResult {
|
|
|
40
40
|
url?: string;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
declare const useMenu: ({ context, specification, domain, }: {
|
|
43
|
+
declare const useMenu: ({ context, specification, domain, defaultService, }: {
|
|
44
44
|
context?: any;
|
|
45
45
|
specification?: any;
|
|
46
|
+
defaultService?: any;
|
|
46
47
|
domain?: any;
|
|
47
48
|
}) => UseMenuReturn;
|
|
48
49
|
type useMenuType = ReturnType<typeof useMenu>;
|
package/dist/hooks.js
CHANGED
|
@@ -358,18 +358,21 @@ __reExport(utils_exports, require("@fctc/interface-logic/utils"));
|
|
|
358
358
|
var useMenu = ({
|
|
359
359
|
context,
|
|
360
360
|
specification,
|
|
361
|
-
domain
|
|
361
|
+
domain,
|
|
362
|
+
defaultService
|
|
362
363
|
}) => {
|
|
363
364
|
const { env } = (0, provider_exports.useEnv)();
|
|
364
365
|
const { useGetMenu: useGetMenu2 } = (0, provider_exports.useService)();
|
|
365
366
|
const [action, callAction] = useCallAction();
|
|
366
367
|
const [service, setService] = (0, import_react3.useState)("");
|
|
367
368
|
const [xNode, setXNode] = (0, import_react3.useState)("");
|
|
369
|
+
console.log("service", service);
|
|
368
370
|
const menuData = useGetMenu2(
|
|
369
371
|
context,
|
|
370
372
|
specification,
|
|
371
373
|
!!context && !(0, utils_exports.isObjectEmpty)(context),
|
|
372
|
-
domain
|
|
374
|
+
domain,
|
|
375
|
+
defaultService
|
|
373
376
|
);
|
|
374
377
|
const [menuId, setMenuId] = (0, import_react3.useState)(void 0);
|
|
375
378
|
const configedIconData = (0, import_react3.useMemo)(() => {
|
|
@@ -458,7 +461,7 @@ var import_react_i18next = require("react-i18next");
|
|
|
458
461
|
var useProfile = ({ service }) => {
|
|
459
462
|
const { setUid, setLang, setUserInfo, env } = (0, provider_exports.useEnv)();
|
|
460
463
|
const { useGetProfile: useGetProfile2 } = (0, provider_exports.useService)();
|
|
461
|
-
const getProfile = useGetProfile2("
|
|
464
|
+
const getProfile = useGetProfile2("", service);
|
|
462
465
|
const { i18n } = (0, import_react_i18next.useTranslation)();
|
|
463
466
|
const userInfoQuery = (0, import_react_query2.useQuery)({
|
|
464
467
|
queryKey: ["userInfo"],
|
|
@@ -568,7 +571,9 @@ var useCompany = ({ service }) => {
|
|
|
568
571
|
setCompanies(companyIDs);
|
|
569
572
|
}
|
|
570
573
|
}, [current_company_id]);
|
|
571
|
-
const getCompanyInfo = useGetCompanyInfo2(
|
|
574
|
+
const getCompanyInfo = useGetCompanyInfo2({
|
|
575
|
+
service
|
|
576
|
+
});
|
|
572
577
|
const companyInfo = (0, import_react_query3.useQuery)({
|
|
573
578
|
queryKey: ["companyInfoQuery", current_company_id],
|
|
574
579
|
queryFn: () => getCompanyInfo.mutateAsync(Number(current_company_id)),
|
|
@@ -623,7 +628,8 @@ var AppProvider = ({
|
|
|
623
628
|
...menuContext
|
|
624
629
|
},
|
|
625
630
|
specification: menuParams?.specification,
|
|
626
|
-
domain: menuParams?.domain
|
|
631
|
+
domain: menuParams?.domain,
|
|
632
|
+
defaultService: env.default_service
|
|
627
633
|
});
|
|
628
634
|
const action = (0, import_react8.useMemo)(() => {
|
|
629
635
|
return menu?.state?.action;
|
package/dist/hooks.mjs
CHANGED
|
@@ -339,18 +339,21 @@ import * as utils_star from "@fctc/interface-logic/utils";
|
|
|
339
339
|
var useMenu = ({
|
|
340
340
|
context,
|
|
341
341
|
specification,
|
|
342
|
-
domain
|
|
342
|
+
domain,
|
|
343
|
+
defaultService
|
|
343
344
|
}) => {
|
|
344
345
|
const { env } = (0, provider_exports.useEnv)();
|
|
345
346
|
const { useGetMenu: useGetMenu2 } = (0, provider_exports.useService)();
|
|
346
347
|
const [action, callAction] = useCallAction();
|
|
347
348
|
const [service, setService] = useState2("");
|
|
348
349
|
const [xNode, setXNode] = useState2("");
|
|
350
|
+
console.log("service", service);
|
|
349
351
|
const menuData = useGetMenu2(
|
|
350
352
|
context,
|
|
351
353
|
specification,
|
|
352
354
|
!!context && !(0, utils_exports.isObjectEmpty)(context),
|
|
353
|
-
domain
|
|
355
|
+
domain,
|
|
356
|
+
defaultService
|
|
354
357
|
);
|
|
355
358
|
const [menuId, setMenuId] = useState2(void 0);
|
|
356
359
|
const configedIconData = useMemo(() => {
|
|
@@ -439,7 +442,7 @@ import { useTranslation } from "react-i18next";
|
|
|
439
442
|
var useProfile = ({ service }) => {
|
|
440
443
|
const { setUid, setLang, setUserInfo, env } = (0, provider_exports.useEnv)();
|
|
441
444
|
const { useGetProfile: useGetProfile2 } = (0, provider_exports.useService)();
|
|
442
|
-
const getProfile = useGetProfile2("
|
|
445
|
+
const getProfile = useGetProfile2("", service);
|
|
443
446
|
const { i18n } = useTranslation();
|
|
444
447
|
const userInfoQuery = useQuery2({
|
|
445
448
|
queryKey: ["userInfo"],
|
|
@@ -549,7 +552,9 @@ var useCompany = ({ service }) => {
|
|
|
549
552
|
setCompanies(companyIDs);
|
|
550
553
|
}
|
|
551
554
|
}, [current_company_id]);
|
|
552
|
-
const getCompanyInfo = useGetCompanyInfo2(
|
|
555
|
+
const getCompanyInfo = useGetCompanyInfo2({
|
|
556
|
+
service
|
|
557
|
+
});
|
|
553
558
|
const companyInfo = useQuery3({
|
|
554
559
|
queryKey: ["companyInfoQuery", current_company_id],
|
|
555
560
|
queryFn: () => getCompanyInfo.mutateAsync(Number(current_company_id)),
|
|
@@ -604,7 +609,8 @@ var AppProvider = ({
|
|
|
604
609
|
...menuContext
|
|
605
610
|
},
|
|
606
611
|
specification: menuParams?.specification,
|
|
607
|
-
domain: menuParams?.domain
|
|
612
|
+
domain: menuParams?.domain,
|
|
613
|
+
defaultService: env.default_service
|
|
608
614
|
});
|
|
609
615
|
const action = useMemo5(() => {
|
|
610
616
|
return menu?.state?.action;
|
package/dist/index.js
CHANGED
|
@@ -4408,18 +4408,21 @@ __reExport(utils_exports, require("@fctc/interface-logic/utils"));
|
|
|
4408
4408
|
var useMenu = ({
|
|
4409
4409
|
context,
|
|
4410
4410
|
specification,
|
|
4411
|
-
domain
|
|
4411
|
+
domain,
|
|
4412
|
+
defaultService
|
|
4412
4413
|
}) => {
|
|
4413
4414
|
const { env } = (0, provider_exports.useEnv)();
|
|
4414
4415
|
const { useGetMenu: useGetMenu2 } = (0, provider_exports.useService)();
|
|
4415
4416
|
const [action, callAction] = useCallAction();
|
|
4416
4417
|
const [service, setService] = (0, import_react3.useState)("");
|
|
4417
4418
|
const [xNode, setXNode] = (0, import_react3.useState)("");
|
|
4419
|
+
console.log("service", service);
|
|
4418
4420
|
const menuData = useGetMenu2(
|
|
4419
4421
|
context,
|
|
4420
4422
|
specification,
|
|
4421
4423
|
!!context && !(0, utils_exports.isObjectEmpty)(context),
|
|
4422
|
-
domain
|
|
4424
|
+
domain,
|
|
4425
|
+
defaultService
|
|
4423
4426
|
);
|
|
4424
4427
|
const [menuId, setMenuId] = (0, import_react3.useState)(void 0);
|
|
4425
4428
|
const configedIconData = (0, import_react3.useMemo)(() => {
|
|
@@ -4508,7 +4511,7 @@ var import_react_i18next = require("react-i18next");
|
|
|
4508
4511
|
var useProfile = ({ service }) => {
|
|
4509
4512
|
const { setUid, setLang, setUserInfo, env } = (0, provider_exports.useEnv)();
|
|
4510
4513
|
const { useGetProfile: useGetProfile2 } = (0, provider_exports.useService)();
|
|
4511
|
-
const getProfile = useGetProfile2("
|
|
4514
|
+
const getProfile = useGetProfile2("", service);
|
|
4512
4515
|
const { i18n: i18n2 } = (0, import_react_i18next.useTranslation)();
|
|
4513
4516
|
const userInfoQuery = (0, import_react_query2.useQuery)({
|
|
4514
4517
|
queryKey: ["userInfo"],
|
|
@@ -4618,7 +4621,9 @@ var useCompany = ({ service }) => {
|
|
|
4618
4621
|
setCompanies(companyIDs);
|
|
4619
4622
|
}
|
|
4620
4623
|
}, [current_company_id]);
|
|
4621
|
-
const getCompanyInfo = useGetCompanyInfo2(
|
|
4624
|
+
const getCompanyInfo = useGetCompanyInfo2({
|
|
4625
|
+
service
|
|
4626
|
+
});
|
|
4622
4627
|
const companyInfo = (0, import_react_query3.useQuery)({
|
|
4623
4628
|
queryKey: ["companyInfoQuery", current_company_id],
|
|
4624
4629
|
queryFn: () => getCompanyInfo.mutateAsync(Number(current_company_id)),
|
|
@@ -4673,7 +4678,8 @@ var AppProvider = ({
|
|
|
4673
4678
|
...menuContext
|
|
4674
4679
|
},
|
|
4675
4680
|
specification: menuParams?.specification,
|
|
4676
|
-
domain: menuParams?.domain
|
|
4681
|
+
domain: menuParams?.domain,
|
|
4682
|
+
defaultService: env.default_service
|
|
4677
4683
|
});
|
|
4678
4684
|
const action = (0, import_react8.useMemo)(() => {
|
|
4679
4685
|
return menu?.state?.action;
|
package/dist/index.mjs
CHANGED
|
@@ -4483,18 +4483,21 @@ import * as utils_star from "@fctc/interface-logic/utils";
|
|
|
4483
4483
|
var useMenu = ({
|
|
4484
4484
|
context,
|
|
4485
4485
|
specification,
|
|
4486
|
-
domain
|
|
4486
|
+
domain,
|
|
4487
|
+
defaultService
|
|
4487
4488
|
}) => {
|
|
4488
4489
|
const { env } = (0, provider_exports.useEnv)();
|
|
4489
4490
|
const { useGetMenu: useGetMenu2 } = (0, provider_exports.useService)();
|
|
4490
4491
|
const [action, callAction] = useCallAction();
|
|
4491
4492
|
const [service, setService] = useState2("");
|
|
4492
4493
|
const [xNode, setXNode] = useState2("");
|
|
4494
|
+
console.log("service", service);
|
|
4493
4495
|
const menuData = useGetMenu2(
|
|
4494
4496
|
context,
|
|
4495
4497
|
specification,
|
|
4496
4498
|
!!context && !(0, utils_exports.isObjectEmpty)(context),
|
|
4497
|
-
domain
|
|
4499
|
+
domain,
|
|
4500
|
+
defaultService
|
|
4498
4501
|
);
|
|
4499
4502
|
const [menuId, setMenuId] = useState2(void 0);
|
|
4500
4503
|
const configedIconData = useMemo(() => {
|
|
@@ -4583,7 +4586,7 @@ import { useTranslation } from "react-i18next";
|
|
|
4583
4586
|
var useProfile = ({ service }) => {
|
|
4584
4587
|
const { setUid, setLang, setUserInfo, env } = (0, provider_exports.useEnv)();
|
|
4585
4588
|
const { useGetProfile: useGetProfile2 } = (0, provider_exports.useService)();
|
|
4586
|
-
const getProfile = useGetProfile2("
|
|
4589
|
+
const getProfile = useGetProfile2("", service);
|
|
4587
4590
|
const { i18n: i18n2 } = useTranslation();
|
|
4588
4591
|
const userInfoQuery = useQuery2({
|
|
4589
4592
|
queryKey: ["userInfo"],
|
|
@@ -4693,7 +4696,9 @@ var useCompany = ({ service }) => {
|
|
|
4693
4696
|
setCompanies(companyIDs);
|
|
4694
4697
|
}
|
|
4695
4698
|
}, [current_company_id]);
|
|
4696
|
-
const getCompanyInfo = useGetCompanyInfo2(
|
|
4699
|
+
const getCompanyInfo = useGetCompanyInfo2({
|
|
4700
|
+
service
|
|
4701
|
+
});
|
|
4697
4702
|
const companyInfo = useQuery3({
|
|
4698
4703
|
queryKey: ["companyInfoQuery", current_company_id],
|
|
4699
4704
|
queryFn: () => getCompanyInfo.mutateAsync(Number(current_company_id)),
|
|
@@ -4748,7 +4753,8 @@ var AppProvider = ({
|
|
|
4748
4753
|
...menuContext
|
|
4749
4754
|
},
|
|
4750
4755
|
specification: menuParams?.specification,
|
|
4751
|
-
domain: menuParams?.domain
|
|
4756
|
+
domain: menuParams?.domain,
|
|
4757
|
+
defaultService: env.default_service
|
|
4752
4758
|
});
|
|
4753
4759
|
const action = useMemo5(() => {
|
|
4754
4760
|
return menu?.state?.action;
|
package/package.json
CHANGED
|
@@ -1,94 +1,94 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@fctc/widget-logic",
|
|
3
|
-
"version": "3.4.
|
|
4
|
-
"types": "dist/index.d.ts",
|
|
5
|
-
"main": "dist/index.cjs",
|
|
6
|
-
"module": "dist/index.mjs",
|
|
7
|
-
"exports": {
|
|
8
|
-
".": {
|
|
9
|
-
"types": "./dist/index.d.ts",
|
|
10
|
-
"import": "./dist/index.mjs",
|
|
11
|
-
"require": "./dist/index.cjs"
|
|
12
|
-
},
|
|
13
|
-
"./hooks": {
|
|
14
|
-
"types": "./dist/hooks.d.ts",
|
|
15
|
-
"import": "./dist/hooks.mjs",
|
|
16
|
-
"require": "./dist/hooks.cjs"
|
|
17
|
-
},
|
|
18
|
-
"./widget": {
|
|
19
|
-
"types": "./dist/widget.d.ts",
|
|
20
|
-
"import": "./dist/widget.mjs",
|
|
21
|
-
"require": "./dist/widget.cjs"
|
|
22
|
-
},
|
|
23
|
-
"./icons": {
|
|
24
|
-
"types": "./dist/icons.d.ts",
|
|
25
|
-
"import": "./dist/icons.mjs",
|
|
26
|
-
"require": "./dist/icons.cjs"
|
|
27
|
-
},
|
|
28
|
-
"./utils": {
|
|
29
|
-
"types": "./dist/utils.d.ts",
|
|
30
|
-
"import": "./dist/utils.mjs",
|
|
31
|
-
"require": "./dist/utils.cjs"
|
|
32
|
-
},
|
|
33
|
-
"./store": {
|
|
34
|
-
"types": "./dist/store.d.ts",
|
|
35
|
-
"import": "./dist/store.mjs",
|
|
36
|
-
"require": "./dist/store.cjs"
|
|
37
|
-
},
|
|
38
|
-
"./config": {
|
|
39
|
-
"types": "./dist/config.d.ts",
|
|
40
|
-
"import": "./dist/config.mjs",
|
|
41
|
-
"require": "./dist/config.cjs"
|
|
42
|
-
},
|
|
43
|
-
"./constants": {
|
|
44
|
-
"types": "./dist/constants.d.ts",
|
|
45
|
-
"import": "./dist/constants.mjs",
|
|
46
|
-
"require": "./dist/constants.cjs"
|
|
47
|
-
},
|
|
48
|
-
"./environment": {
|
|
49
|
-
"types": "./dist/environment.d.ts",
|
|
50
|
-
"import": "./dist/environment.mjs",
|
|
51
|
-
"require": "./dist/environment.cjs"
|
|
52
|
-
},
|
|
53
|
-
"./provider": {
|
|
54
|
-
"types": "./dist/provider.d.ts",
|
|
55
|
-
"import": "./dist/provider.mjs",
|
|
56
|
-
"require": "./dist/provider.cjs"
|
|
57
|
-
},
|
|
58
|
-
"./services": {
|
|
59
|
-
"types": "./dist/services.d.ts",
|
|
60
|
-
"import": "./dist/services.mjs",
|
|
61
|
-
"require": "./dist/services.cjs"
|
|
62
|
-
},
|
|
63
|
-
"./types": {
|
|
64
|
-
"types": "./dist/types.d.ts",
|
|
65
|
-
"import": "./dist/types.mjs",
|
|
66
|
-
"require": "./dist/types.cjs"
|
|
67
|
-
}
|
|
68
|
-
},
|
|
69
|
-
"files": [
|
|
70
|
-
"dist"
|
|
71
|
-
],
|
|
72
|
-
"scripts": {
|
|
73
|
-
"build": "tsup",
|
|
74
|
-
"test": "jest"
|
|
75
|
-
},
|
|
76
|
-
"dependencies": {
|
|
77
|
-
"@fctc/interface-logic": "^3.0.
|
|
78
|
-
"@headlessui/react": "^2.2.6",
|
|
79
|
-
"@tanstack/react-query": "^5.84.0",
|
|
80
|
-
"i18next": "^25.3.2",
|
|
81
|
-
"i18next-browser-languagedetector": "^8.2.0",
|
|
82
|
-
"react-i18next": "^15.6.1",
|
|
83
|
-
"react-tooltip": "^5.29.1"
|
|
84
|
-
},
|
|
85
|
-
"devDependencies": {
|
|
86
|
-
"@types/react": "^18.3.1",
|
|
87
|
-
"jest": "^29.7.0",
|
|
88
|
-
"react": "18.0.0",
|
|
89
|
-
"tsup": "^8.0.0",
|
|
90
|
-
"typescript": "^5.8.2"
|
|
91
|
-
},
|
|
92
|
-
"packageManager": "yarn@1.22.0",
|
|
93
|
-
"peerDependencies": {}
|
|
94
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@fctc/widget-logic",
|
|
3
|
+
"version": "3.4.7",
|
|
4
|
+
"types": "dist/index.d.ts",
|
|
5
|
+
"main": "dist/index.cjs",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"import": "./dist/index.mjs",
|
|
11
|
+
"require": "./dist/index.cjs"
|
|
12
|
+
},
|
|
13
|
+
"./hooks": {
|
|
14
|
+
"types": "./dist/hooks.d.ts",
|
|
15
|
+
"import": "./dist/hooks.mjs",
|
|
16
|
+
"require": "./dist/hooks.cjs"
|
|
17
|
+
},
|
|
18
|
+
"./widget": {
|
|
19
|
+
"types": "./dist/widget.d.ts",
|
|
20
|
+
"import": "./dist/widget.mjs",
|
|
21
|
+
"require": "./dist/widget.cjs"
|
|
22
|
+
},
|
|
23
|
+
"./icons": {
|
|
24
|
+
"types": "./dist/icons.d.ts",
|
|
25
|
+
"import": "./dist/icons.mjs",
|
|
26
|
+
"require": "./dist/icons.cjs"
|
|
27
|
+
},
|
|
28
|
+
"./utils": {
|
|
29
|
+
"types": "./dist/utils.d.ts",
|
|
30
|
+
"import": "./dist/utils.mjs",
|
|
31
|
+
"require": "./dist/utils.cjs"
|
|
32
|
+
},
|
|
33
|
+
"./store": {
|
|
34
|
+
"types": "./dist/store.d.ts",
|
|
35
|
+
"import": "./dist/store.mjs",
|
|
36
|
+
"require": "./dist/store.cjs"
|
|
37
|
+
},
|
|
38
|
+
"./config": {
|
|
39
|
+
"types": "./dist/config.d.ts",
|
|
40
|
+
"import": "./dist/config.mjs",
|
|
41
|
+
"require": "./dist/config.cjs"
|
|
42
|
+
},
|
|
43
|
+
"./constants": {
|
|
44
|
+
"types": "./dist/constants.d.ts",
|
|
45
|
+
"import": "./dist/constants.mjs",
|
|
46
|
+
"require": "./dist/constants.cjs"
|
|
47
|
+
},
|
|
48
|
+
"./environment": {
|
|
49
|
+
"types": "./dist/environment.d.ts",
|
|
50
|
+
"import": "./dist/environment.mjs",
|
|
51
|
+
"require": "./dist/environment.cjs"
|
|
52
|
+
},
|
|
53
|
+
"./provider": {
|
|
54
|
+
"types": "./dist/provider.d.ts",
|
|
55
|
+
"import": "./dist/provider.mjs",
|
|
56
|
+
"require": "./dist/provider.cjs"
|
|
57
|
+
},
|
|
58
|
+
"./services": {
|
|
59
|
+
"types": "./dist/services.d.ts",
|
|
60
|
+
"import": "./dist/services.mjs",
|
|
61
|
+
"require": "./dist/services.cjs"
|
|
62
|
+
},
|
|
63
|
+
"./types": {
|
|
64
|
+
"types": "./dist/types.d.ts",
|
|
65
|
+
"import": "./dist/types.mjs",
|
|
66
|
+
"require": "./dist/types.cjs"
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"files": [
|
|
70
|
+
"dist"
|
|
71
|
+
],
|
|
72
|
+
"scripts": {
|
|
73
|
+
"build": "tsup",
|
|
74
|
+
"test": "jest"
|
|
75
|
+
},
|
|
76
|
+
"dependencies": {
|
|
77
|
+
"@fctc/interface-logic": "^3.0.8",
|
|
78
|
+
"@headlessui/react": "^2.2.6",
|
|
79
|
+
"@tanstack/react-query": "^5.84.0",
|
|
80
|
+
"i18next": "^25.3.2",
|
|
81
|
+
"i18next-browser-languagedetector": "^8.2.0",
|
|
82
|
+
"react-i18next": "^15.6.1",
|
|
83
|
+
"react-tooltip": "^5.29.1"
|
|
84
|
+
},
|
|
85
|
+
"devDependencies": {
|
|
86
|
+
"@types/react": "^18.3.1",
|
|
87
|
+
"jest": "^29.7.0",
|
|
88
|
+
"react": "18.0.0",
|
|
89
|
+
"tsup": "^8.0.0",
|
|
90
|
+
"typescript": "^5.8.2"
|
|
91
|
+
},
|
|
92
|
+
"packageManager": "yarn@1.22.0",
|
|
93
|
+
"peerDependencies": {}
|
|
94
|
+
}
|