@powerhousedao/connect 1.0.24-dev.0 → 1.1.1
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/.env +1 -1
- package/dist/assets/{app-B5yYl0zv.js → app-CZSKsD-w.js} +11239 -12745
- package/dist/assets/{app-DWlDE8AF.css → app-W_mH4m8_.css} +182 -241
- package/dist/assets/{app-loader-NDVZu4bS.css → app-loader-4GyeoNTc.css} +229 -239
- package/dist/assets/{app-loader-CmEZOj3m.js → app-loader-CyUyHxMC.js} +436 -745
- package/dist/assets/{ccip-KtRjx9vh.js → ccip-BPO0EeBI.js} +8 -6
- package/dist/assets/{content-2lJzkjLx.js → content-fzZoyU8t.js} +466 -1103
- package/dist/assets/{index-BVVRVlZN.js → index-C3PlmBGF.js} +3 -4
- package/dist/assets/{index-dSMCpjcQ.js → index-DFiZ2Eug.js} +171 -23
- package/dist/assets/{index-BhHOiwFw.js → index-D_CfC9G5.js} +3702 -3517
- package/dist/assets/{main.DA6nl4Ov.js → main.8RNzWcZO.js} +12 -3
- package/dist/assets/{style-CdxGKc2g.css → style-U7Kx3_hE.css} +95 -39
- package/dist/external-packages.js +0 -1
- package/dist/hmr.js +0 -1
- package/dist/index.html +1 -1
- package/dist/service-worker.js +0 -1
- package/dist/vite-envs.sh +1 -1
- package/package.json +20 -21
- package/dist/assets/app-B5yYl0zv.js.map +0 -1
- package/dist/assets/app-loader-CmEZOj3m.js.map +0 -1
- package/dist/assets/browser-D5LEpLBa.js +0 -27224
- package/dist/assets/browser-D5LEpLBa.js.map +0 -1
- package/dist/assets/ccip-KtRjx9vh.js.map +0 -1
- package/dist/assets/content-2lJzkjLx.js.map +0 -1
- package/dist/assets/index-BVVRVlZN.js.map +0 -1
- package/dist/assets/index-BhHOiwFw.js.map +0 -1
- package/dist/assets/index-DZiF5od7.js +0 -208
- package/dist/assets/index-DZiF5od7.js.map +0 -1
- package/dist/assets/index-dSMCpjcQ.js.map +0 -1
- package/dist/assets/main.DA6nl4Ov.js.map +0 -1
- package/dist/assets/reactor-analytics-CF_JKt8H.js +0 -42
- package/dist/assets/reactor-analytics-CF_JKt8H.js.map +0 -1
- package/dist/assets/router-Ch1WZD-6.js +0 -1585
- package/dist/assets/router-Ch1WZD-6.js.map +0 -1
- package/dist/external-packages.js.map +0 -1
- package/dist/hmr.js.map +0 -1
- package/dist/service-worker.js.map +0 -1
|
@@ -43,12 +43,22 @@ const seen = {};
|
|
|
43
43
|
const __vitePreload = function preload(baseModule, deps, importerUrl) {
|
|
44
44
|
let promise = Promise.resolve();
|
|
45
45
|
if (deps && deps.length > 0) {
|
|
46
|
+
let allSettled2 = function(promises) {
|
|
47
|
+
return Promise.all(
|
|
48
|
+
promises.map(
|
|
49
|
+
(p) => Promise.resolve(p).then(
|
|
50
|
+
(value) => ({ status: "fulfilled", value }),
|
|
51
|
+
(reason) => ({ status: "rejected", reason })
|
|
52
|
+
)
|
|
53
|
+
)
|
|
54
|
+
);
|
|
55
|
+
};
|
|
46
56
|
document.getElementsByTagName("link");
|
|
47
57
|
const cspNonceMeta = document.querySelector(
|
|
48
58
|
"meta[property=csp-nonce]"
|
|
49
59
|
);
|
|
50
60
|
const cspNonce = (cspNonceMeta == null ? void 0 : cspNonceMeta.nonce) || (cspNonceMeta == null ? void 0 : cspNonceMeta.getAttribute("nonce"));
|
|
51
|
-
promise =
|
|
61
|
+
promise = allSettled2(
|
|
52
62
|
deps.map((dep) => {
|
|
53
63
|
dep = assetsURL(dep);
|
|
54
64
|
if (dep in seen) return;
|
|
@@ -99,8 +109,7 @@ const __vitePreload = function preload(baseModule, deps, importerUrl) {
|
|
|
99
109
|
return baseModule().catch(handlePreloadError);
|
|
100
110
|
});
|
|
101
111
|
};
|
|
102
|
-
__vitePreload(() => import("./index-
|
|
112
|
+
__vitePreload(() => import("./index-C3PlmBGF.js"), true ? [] : void 0);
|
|
103
113
|
export {
|
|
104
114
|
__vitePreload as _
|
|
105
115
|
};
|
|
106
|
-
//# sourceMappingURL=main.DA6nl4Ov.js.map
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
|
|
2
2
|
|
|
3
|
-
/*! tailwindcss v4.
|
|
3
|
+
/*! tailwindcss v4.1.5 | MIT License | https://tailwindcss.com */
|
|
4
|
+
@layer properties;
|
|
4
5
|
:root {
|
|
5
6
|
--toastify-color-light: #fff;
|
|
6
7
|
--toastify-color-dark: #121212;
|
|
@@ -722,17 +723,7 @@
|
|
|
722
723
|
--default-transition-duration: 150ms;
|
|
723
724
|
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
724
725
|
--default-font-family: var(--font-sans);
|
|
725
|
-
--default-font-feature-settings: var(--font-sans--font-feature-settings);
|
|
726
|
-
--default-font-variation-settings: var(
|
|
727
|
-
--font-sans--font-variation-settings
|
|
728
|
-
);
|
|
729
726
|
--default-mono-font-family: var(--font-mono);
|
|
730
|
-
--default-mono-font-feature-settings: var(
|
|
731
|
-
--font-mono--font-feature-settings
|
|
732
|
-
);
|
|
733
|
-
--default-mono-font-variation-settings: var(
|
|
734
|
-
--font-mono--font-variation-settings
|
|
735
|
-
);
|
|
736
727
|
}
|
|
737
728
|
}
|
|
738
729
|
@layer base {
|
|
@@ -746,14 +737,11 @@
|
|
|
746
737
|
line-height: 1.5;
|
|
747
738
|
-webkit-text-size-adjust: 100%;
|
|
748
739
|
tab-size: 4;
|
|
749
|
-
font-family: var(
|
|
740
|
+
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
750
741
|
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
751
|
-
font-variation-settings: var(
|
|
742
|
+
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
752
743
|
-webkit-tap-highlight-color: transparent;
|
|
753
744
|
}
|
|
754
|
-
body {
|
|
755
|
-
line-height: inherit;
|
|
756
|
-
}
|
|
757
745
|
hr {
|
|
758
746
|
height: 0;
|
|
759
747
|
color: inherit;
|
|
@@ -776,9 +764,9 @@
|
|
|
776
764
|
font-weight: bolder;
|
|
777
765
|
}
|
|
778
766
|
code, kbd, samp, pre {
|
|
779
|
-
font-family: var(
|
|
780
|
-
font-feature-settings: var(
|
|
781
|
-
font-variation-settings: var(
|
|
767
|
+
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
768
|
+
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
769
|
+
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
782
770
|
font-size: 1em;
|
|
783
771
|
}
|
|
784
772
|
small {
|
|
@@ -842,7 +830,14 @@
|
|
|
842
830
|
}
|
|
843
831
|
::placeholder {
|
|
844
832
|
opacity: 1;
|
|
845
|
-
|
|
833
|
+
}
|
|
834
|
+
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
835
|
+
::placeholder {
|
|
836
|
+
color: currentcolor;
|
|
837
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
838
|
+
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
839
|
+
}
|
|
840
|
+
}
|
|
846
841
|
}
|
|
847
842
|
textarea {
|
|
848
843
|
resize: vertical;
|
|
@@ -1015,7 +1010,7 @@
|
|
|
1015
1010
|
rotate: 180deg;
|
|
1016
1011
|
}
|
|
1017
1012
|
.transform {
|
|
1018
|
-
transform: var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z) var(--tw-skew-x) var(--tw-skew-y);
|
|
1013
|
+
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
1019
1014
|
}
|
|
1020
1015
|
.resize {
|
|
1021
1016
|
resize: both;
|
|
@@ -1283,7 +1278,7 @@
|
|
|
1283
1278
|
}
|
|
1284
1279
|
.focus-visible\:ring-2 {
|
|
1285
1280
|
&:focus-visible {
|
|
1286
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,
|
|
1281
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1287
1282
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1288
1283
|
}
|
|
1289
1284
|
}
|
|
@@ -1378,9 +1373,6 @@ input[type="number"] {
|
|
|
1378
1373
|
h1, h2, h3, h4, h5, h6, p {
|
|
1379
1374
|
color: var(--color-gray-900);
|
|
1380
1375
|
}
|
|
1381
|
-
button {
|
|
1382
|
-
cursor: pointer;
|
|
1383
|
-
}
|
|
1384
1376
|
}
|
|
1385
1377
|
@layer theme, base, components, utilities;
|
|
1386
1378
|
@layer theme;
|
|
@@ -1395,14 +1387,11 @@ input[type="number"] {
|
|
|
1395
1387
|
line-height: 1.5;
|
|
1396
1388
|
-webkit-text-size-adjust: 100%;
|
|
1397
1389
|
tab-size: 4;
|
|
1398
|
-
font-family: var(
|
|
1390
|
+
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
1399
1391
|
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
1400
|
-
font-variation-settings: var(
|
|
1392
|
+
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
1401
1393
|
-webkit-tap-highlight-color: transparent;
|
|
1402
1394
|
}
|
|
1403
|
-
body {
|
|
1404
|
-
line-height: inherit;
|
|
1405
|
-
}
|
|
1406
1395
|
hr {
|
|
1407
1396
|
height: 0;
|
|
1408
1397
|
color: inherit;
|
|
@@ -1425,9 +1414,9 @@ input[type="number"] {
|
|
|
1425
1414
|
font-weight: bolder;
|
|
1426
1415
|
}
|
|
1427
1416
|
code, kbd, samp, pre {
|
|
1428
|
-
font-family: var(
|
|
1429
|
-
font-feature-settings: var(
|
|
1430
|
-
font-variation-settings: var(
|
|
1417
|
+
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
1418
|
+
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
1419
|
+
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
1431
1420
|
font-size: 1em;
|
|
1432
1421
|
}
|
|
1433
1422
|
small {
|
|
@@ -1491,7 +1480,14 @@ input[type="number"] {
|
|
|
1491
1480
|
}
|
|
1492
1481
|
::placeholder {
|
|
1493
1482
|
opacity: 1;
|
|
1494
|
-
|
|
1483
|
+
}
|
|
1484
|
+
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
1485
|
+
::placeholder {
|
|
1486
|
+
color: currentcolor;
|
|
1487
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1488
|
+
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
1489
|
+
}
|
|
1490
|
+
}
|
|
1495
1491
|
}
|
|
1496
1492
|
textarea {
|
|
1497
1493
|
resize: vertical;
|
|
@@ -1535,27 +1531,22 @@ input[type="number"] {
|
|
|
1535
1531
|
@property --tw-rotate-x {
|
|
1536
1532
|
syntax: "*";
|
|
1537
1533
|
inherits: false;
|
|
1538
|
-
initial-value: rotateX(0);
|
|
1539
1534
|
}
|
|
1540
1535
|
@property --tw-rotate-y {
|
|
1541
1536
|
syntax: "*";
|
|
1542
1537
|
inherits: false;
|
|
1543
|
-
initial-value: rotateY(0);
|
|
1544
1538
|
}
|
|
1545
1539
|
@property --tw-rotate-z {
|
|
1546
1540
|
syntax: "*";
|
|
1547
1541
|
inherits: false;
|
|
1548
|
-
initial-value: rotateZ(0);
|
|
1549
1542
|
}
|
|
1550
1543
|
@property --tw-skew-x {
|
|
1551
1544
|
syntax: "*";
|
|
1552
1545
|
inherits: false;
|
|
1553
|
-
initial-value: skewX(0);
|
|
1554
1546
|
}
|
|
1555
1547
|
@property --tw-skew-y {
|
|
1556
1548
|
syntax: "*";
|
|
1557
1549
|
inherits: false;
|
|
1558
|
-
initial-value: skewY(0);
|
|
1559
1550
|
}
|
|
1560
1551
|
@property --tw-border-style {
|
|
1561
1552
|
syntax: "*";
|
|
@@ -1579,6 +1570,11 @@ input[type="number"] {
|
|
|
1579
1570
|
syntax: "*";
|
|
1580
1571
|
inherits: false;
|
|
1581
1572
|
}
|
|
1573
|
+
@property --tw-shadow-alpha {
|
|
1574
|
+
syntax: "<percentage>";
|
|
1575
|
+
inherits: false;
|
|
1576
|
+
initial-value: 100%;
|
|
1577
|
+
}
|
|
1582
1578
|
@property --tw-inset-shadow {
|
|
1583
1579
|
syntax: "*";
|
|
1584
1580
|
inherits: false;
|
|
@@ -1588,6 +1584,11 @@ input[type="number"] {
|
|
|
1588
1584
|
syntax: "*";
|
|
1589
1585
|
inherits: false;
|
|
1590
1586
|
}
|
|
1587
|
+
@property --tw-inset-shadow-alpha {
|
|
1588
|
+
syntax: "<percentage>";
|
|
1589
|
+
inherits: false;
|
|
1590
|
+
initial-value: 100%;
|
|
1591
|
+
}
|
|
1591
1592
|
@property --tw-ring-color {
|
|
1592
1593
|
syntax: "*";
|
|
1593
1594
|
inherits: false;
|
|
@@ -1670,3 +1671,58 @@ input[type="number"] {
|
|
|
1670
1671
|
syntax: "*";
|
|
1671
1672
|
inherits: false;
|
|
1672
1673
|
}
|
|
1674
|
+
@property --tw-drop-shadow-color {
|
|
1675
|
+
syntax: "*";
|
|
1676
|
+
inherits: false;
|
|
1677
|
+
}
|
|
1678
|
+
@property --tw-drop-shadow-alpha {
|
|
1679
|
+
syntax: "<percentage>";
|
|
1680
|
+
inherits: false;
|
|
1681
|
+
initial-value: 100%;
|
|
1682
|
+
}
|
|
1683
|
+
@property --tw-drop-shadow-size {
|
|
1684
|
+
syntax: "*";
|
|
1685
|
+
inherits: false;
|
|
1686
|
+
}
|
|
1687
|
+
@layer properties {
|
|
1688
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
1689
|
+
*, ::before, ::after, ::backdrop {
|
|
1690
|
+
--tw-rotate-x: initial;
|
|
1691
|
+
--tw-rotate-y: initial;
|
|
1692
|
+
--tw-rotate-z: initial;
|
|
1693
|
+
--tw-skew-x: initial;
|
|
1694
|
+
--tw-skew-y: initial;
|
|
1695
|
+
--tw-border-style: solid;
|
|
1696
|
+
--tw-leading: initial;
|
|
1697
|
+
--tw-font-weight: initial;
|
|
1698
|
+
--tw-shadow: 0 0 #0000;
|
|
1699
|
+
--tw-shadow-color: initial;
|
|
1700
|
+
--tw-shadow-alpha: 100%;
|
|
1701
|
+
--tw-inset-shadow: 0 0 #0000;
|
|
1702
|
+
--tw-inset-shadow-color: initial;
|
|
1703
|
+
--tw-inset-shadow-alpha: 100%;
|
|
1704
|
+
--tw-ring-color: initial;
|
|
1705
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
1706
|
+
--tw-inset-ring-color: initial;
|
|
1707
|
+
--tw-inset-ring-shadow: 0 0 #0000;
|
|
1708
|
+
--tw-ring-inset: initial;
|
|
1709
|
+
--tw-ring-offset-width: 0px;
|
|
1710
|
+
--tw-ring-offset-color: #fff;
|
|
1711
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
1712
|
+
--tw-outline-style: solid;
|
|
1713
|
+
--tw-blur: initial;
|
|
1714
|
+
--tw-brightness: initial;
|
|
1715
|
+
--tw-contrast: initial;
|
|
1716
|
+
--tw-grayscale: initial;
|
|
1717
|
+
--tw-hue-rotate: initial;
|
|
1718
|
+
--tw-invert: initial;
|
|
1719
|
+
--tw-opacity: initial;
|
|
1720
|
+
--tw-saturate: initial;
|
|
1721
|
+
--tw-sepia: initial;
|
|
1722
|
+
--tw-drop-shadow: initial;
|
|
1723
|
+
--tw-drop-shadow-color: initial;
|
|
1724
|
+
--tw-drop-shadow-alpha: 100%;
|
|
1725
|
+
--tw-drop-shadow-size: initial;
|
|
1726
|
+
}
|
|
1727
|
+
}
|
|
1728
|
+
}
|
package/dist/hmr.js
CHANGED
package/dist/index.html
CHANGED
|
@@ -64,4 +64,4 @@
|
|
|
64
64
|
"react-dom": "https://esm.sh/react-dom",
|
|
65
65
|
"react-dom/": "https://esm.sh/react-dom/"
|
|
66
66
|
}
|
|
67
|
-
}</script><script type="module" crossorigin="" src="/assets/main.
|
|
67
|
+
}</script><script type="module" crossorigin="" src="/assets/main.8RNzWcZO.js"></script></head><body><div id="app"></div></body></html>
|
package/dist/service-worker.js
CHANGED
package/dist/vite-envs.sh
CHANGED
|
@@ -11,7 +11,7 @@ replaceAll() {
|
|
|
11
11
|
}'
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
html=$(echo "PCFET0NUWVBFIGh0bWw+PGh0bWw+PGhlYWQ+PG1ldGEgY2hhcnNldD0iVVRGLTgiPjxtZXRhIG5hbWU9InZpZXdwb3J0IiBjb250ZW50PSJ3aWR0aD1kZXZpY2Utd2lkdGgsaW5pdGlhbC1zY2FsZT0xIj48dGl0bGU+UG93ZXJob3VzZSBDb25uZWN0PC90aXRsZT48YmFzZSBocmVmPSIvIj48bGluayByZWw9Imljb24iIGhyZWY9Ii9pY29uLmljbyI+PCEtLSB2aXRlLWVudnMgc2NyaXB0IHBsYWNlaG9sZGVyIHhLc1BtTHMzMHN3S3NkSXNWeCAtLT48c2NyaXB0IHR5cGU9ImltcG9ydG1hcCI+ewogICJpbXBvcnRzIjogewogICAgInJlYWN0IjogImh0dHBzOi8vZXNtLnNoL3JlYWN0IiwKICAgICJyZWFjdC8iOiAiaHR0cHM6Ly9lc20uc2gvcmVhY3QvIiwKICAgICJyZWFjdC1kb20iOiAiaHR0cHM6Ly9lc20uc2gvcmVhY3QtZG9tIiwKICAgICJyZWFjdC1kb20vIjogImh0dHBzOi8vZXNtLnNoL3JlYWN0LWRvbS8iCiAgfQp9PC9zY3JpcHQ+
|
|
14
|
+
html=$(echo "PCFET0NUWVBFIGh0bWw+PGh0bWw+PGhlYWQ+PG1ldGEgY2hhcnNldD0iVVRGLTgiPjxtZXRhIG5hbWU9InZpZXdwb3J0IiBjb250ZW50PSJ3aWR0aD1kZXZpY2Utd2lkdGgsaW5pdGlhbC1zY2FsZT0xIj48dGl0bGU+UG93ZXJob3VzZSBDb25uZWN0PC90aXRsZT48YmFzZSBocmVmPSIvIj48bGluayByZWw9Imljb24iIGhyZWY9Ii9pY29uLmljbyI+PCEtLSB2aXRlLWVudnMgc2NyaXB0IHBsYWNlaG9sZGVyIHhLc1BtTHMzMHN3S3NkSXNWeCAtLT48c2NyaXB0IHR5cGU9ImltcG9ydG1hcCI+ewogICJpbXBvcnRzIjogewogICAgInJlYWN0IjogImh0dHBzOi8vZXNtLnNoL3JlYWN0IiwKICAgICJyZWFjdC8iOiAiaHR0cHM6Ly9lc20uc2gvcmVhY3QvIiwKICAgICJyZWFjdC1kb20iOiAiaHR0cHM6Ly9lc20uc2gvcmVhY3QtZG9tIiwKICAgICJyZWFjdC1kb20vIjogImh0dHBzOi8vZXNtLnNoL3JlYWN0LWRvbS8iCiAgfQp9PC9zY3JpcHQ+PHNjcmlwdCB0eXBlPSJtb2R1bGUiIGNyb3Nzb3JpZ2luPSIiIHNyYz0iL2Fzc2V0cy9tYWluLjhSTnpXY1pPLmpzIj48L3NjcmlwdD48L2hlYWQ+PGJvZHk+PGRpdiBpZD0iYXBwIj48L2Rpdj48L2JvZHk+PC9odG1sPg==" | base64 -d)
|
|
15
15
|
|
|
16
16
|
BASE_URL_base64="eEFwV2RSclg5OWtQclZnZ0UiLyIK"
|
|
17
17
|
BASE_URL=$(echo "Lwo=" | base64 -d)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerhousedao/connect",
|
|
3
3
|
"productName": "Powerhouse-Connect",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.1.1",
|
|
5
5
|
"description": "Powerhouse Connect",
|
|
6
6
|
"main": "./dist/index.html",
|
|
7
7
|
"type": "module",
|
|
@@ -35,20 +35,19 @@
|
|
|
35
35
|
"@electron-forge/publisher-github": "^7.2.0",
|
|
36
36
|
"@electron-forge/shared-types": "^7.7.0",
|
|
37
37
|
"@playwright/test": "^1.41.2",
|
|
38
|
-
"@powerhousedao/diff-analyzer": "^0.0.0-dev.4",
|
|
39
38
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
40
39
|
"@sentry/browser": "^9.1.0",
|
|
41
40
|
"@sentry/react": "^7.109.0",
|
|
42
|
-
"@sentry/vite-plugin": "^2.
|
|
43
|
-
"@tailwindcss/vite": "^4.
|
|
41
|
+
"@sentry/vite-plugin": "^2.23.0",
|
|
42
|
+
"@tailwindcss/vite": "^4.1.4",
|
|
44
43
|
"@tanstack/react-virtual": "^3.8.1",
|
|
45
|
-
"@types/node": "^22.
|
|
44
|
+
"@types/node": "^22.13.10",
|
|
46
45
|
"@types/react": "^18.2.79",
|
|
47
46
|
"@types/react-dom": "^18.2.18",
|
|
48
47
|
"@types/uuid": "^9.0.7",
|
|
49
48
|
"@types/wicg-file-system-access": "^2020.9.6",
|
|
50
|
-
"@vitejs/plugin-basic-ssl": "^
|
|
51
|
-
"@vitejs/plugin-react": "^4.
|
|
49
|
+
"@vitejs/plugin-basic-ssl": "^2.0.0",
|
|
50
|
+
"@vitejs/plugin-react": "^4.4.1",
|
|
52
51
|
"asar": "^3.2.0",
|
|
53
52
|
"did-key-creator": "^1.2.0",
|
|
54
53
|
"electron": "30.0.0",
|
|
@@ -73,24 +72,24 @@
|
|
|
73
72
|
"react-i18next": "^13.5.0",
|
|
74
73
|
"react-router-dom": "^6.11.2",
|
|
75
74
|
"tailwind-merge": "^3.0.2",
|
|
76
|
-
"tailwindcss": "^4.
|
|
75
|
+
"tailwindcss": "^4.1.4",
|
|
77
76
|
"uuid": "^9.0.1",
|
|
78
77
|
"viem": "^2.8.13",
|
|
79
|
-
"vite": "^6.
|
|
80
|
-
"vite-envs": "^4.
|
|
78
|
+
"vite": "^6.3.3",
|
|
79
|
+
"vite-envs": "^4.6.0",
|
|
81
80
|
"vite-plugin-html": "^3.2.2",
|
|
82
81
|
"vite-plugin-node-polyfills": "^0.23.0",
|
|
83
|
-
"vite-plugin-svgr": "^4.
|
|
84
|
-
"vite-tsconfig-paths": "^
|
|
82
|
+
"vite-plugin-svgr": "^4.3.0",
|
|
83
|
+
"vite-tsconfig-paths": "^5.1.4",
|
|
85
84
|
"xvfb-maybe": "^0.2.1",
|
|
86
|
-
"@powerhousedao/builder-tools": "0.
|
|
87
|
-
"@powerhousedao/
|
|
88
|
-
"@powerhousedao/
|
|
89
|
-
"@powerhousedao/
|
|
90
|
-
"@powerhousedao/
|
|
91
|
-
"@powerhousedao/
|
|
92
|
-
"document-
|
|
93
|
-
"document-
|
|
85
|
+
"@powerhousedao/builder-tools": "0.10.1",
|
|
86
|
+
"@powerhousedao/common": "1.11.1",
|
|
87
|
+
"@powerhousedao/config": "1.28.1",
|
|
88
|
+
"@powerhousedao/design-system": "1.40.1",
|
|
89
|
+
"@powerhousedao/reactor-browser": "1.23.1",
|
|
90
|
+
"@powerhousedao/scalars": "2.0.1",
|
|
91
|
+
"document-model": "3.0.1",
|
|
92
|
+
"document-drive": "1.30.1"
|
|
94
93
|
},
|
|
95
94
|
"optionalDependencies": {
|
|
96
95
|
"@esbuild/linux-x64": "^0.21.4",
|
|
@@ -111,7 +110,7 @@
|
|
|
111
110
|
"format": "prettier --write \"**/*.+(js|ts|jsx|tsx|json)\"",
|
|
112
111
|
"dev": "vite -c vite.renderer.config.mts",
|
|
113
112
|
"dev:nocache": "rm -rf node_modules/.vite && rm -rf node_modules/.cache && npm run dev",
|
|
114
|
-
"prebuild": "
|
|
113
|
+
"prebuild": "tsc --build --noEmit",
|
|
115
114
|
"build": "NODE_OPTIONS=--max-old-space-size=6144 vite build -c vite.renderer.config.mts",
|
|
116
115
|
"preview:web": "vite preview -c vite.renderer.config.mts",
|
|
117
116
|
"e2e": "playwright test",
|