Skip to content

Commit 6011544

Browse files
committed
zod peerDeps
1 parent 54170e8 commit 6011544

File tree

144 files changed

+1176
-1005
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+1176
-1005
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@
6464
"@storybook/addon-links": "~10.2.1",
6565
"@storybook/react-vite": "~10.2.1",
6666
"@stylistic/eslint-plugin": "~5.7.1",
67-
"@types/node": "~25.0.10",
67+
"@types/node": "~25.1.0",
6868
"@types/react": "^19.2.10",
6969
"@typescript-eslint/parser": "~8.54.0",
7070
"@vitejs/plugin-react-swc": "~4.2.2",
7171
"@xylabs/eslint-config-flat": "~7.3.2",
7272
"@xylabs/eslint-config-react-flat": "~7.3.2",
73-
"@xylabs/react-invertible-theme": "~7.1.9",
74-
"@xylabs/react-theme": "~7.1.9",
73+
"@xylabs/react-invertible-theme": "~7.1.12",
74+
"@xylabs/react-theme": "~7.1.12",
7575
"@xylabs/ts-scripts-yarn3": "~7.3.2",
7676
"@xylabs/tsconfig": "~7.3.2",
7777
"@xylabs/tsconfig-dom": "~7.3.2",

packages/modules/packages/archivist/package.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,11 @@
4343
"src"
4444
],
4545
"dependencies": {
46-
"@xylabs/exists": "~5.0.64",
47-
"@xylabs/hex": "~5.0.64",
48-
"@xylabs/react-async-effect": "~7.1.9",
49-
"@xylabs/react-button": "~7.1.9",
50-
"@xylabs/react-flexbox": "~7.1.9",
51-
"@xylabs/react-promise": "~7.1.9",
46+
"@xylabs/react-async-effect": "~7.1.12",
47+
"@xylabs/react-button": "~7.1.12",
48+
"@xylabs/react-flexbox": "~7.1.12",
49+
"@xylabs/react-promise": "~7.1.12",
50+
"@xylabs/sdk-js": "~5.0.64",
5251
"@xyo-network/archivist-memory": "~5.3.2",
5352
"@xyo-network/archivist-model": "~5.3.2",
5453
"@xyo-network/boundwitness-builder": "~5.3.2",
@@ -78,14 +77,16 @@
7877
"react-router-dom": "^7.13.0",
7978
"storybook": "~10.2.1",
8079
"typescript": "^5.9.3",
81-
"vite": "~7.3.1"
80+
"vite": "~7.3.1",
81+
"zod": "^4.3.6"
8282
},
8383
"peerDependencies": {
8484
"@mui/icons-material": ">=6 <8",
8585
"@mui/material": ">=6 <8",
8686
"react": "^19",
8787
"react-dom": "^19",
88-
"react-router-dom": "^7"
88+
"react-router-dom": "^7",
89+
"zod": "^4"
8990
},
9091
"publishConfig": {
9192
"access": "public"

packages/modules/packages/archivist/src/hooks/node/useWeakArchivistsFromNode.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { exists } from '@xylabs/exists'
1+
import { exists } from '@xylabs/sdk-js'
22
import type { ArchivistInstance } from '@xyo-network/archivist-model'
33
import { asArchivistInstance } from '@xyo-network/archivist-model'
44
import type { ModuleIdentifier } from '@xyo-network/module-model'

packages/modules/packages/diviner/package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"src"
4444
],
4545
"dependencies": {
46-
"@xylabs/exists": "~5.0.64",
46+
"@xylabs/sdk-js": "~5.0.64",
4747
"@xyo-network/diviner-model": "~5.3.2",
4848
"@xyo-network/module-model": "~5.3.2",
4949
"@xyo-network/react-node": "7.5.0"
@@ -53,13 +53,15 @@
5353
"@xylabs/tsconfig": "~7.3.2",
5454
"@xylabs/tsconfig-dom": "~7.3.2",
5555
"@xylabs/tsconfig-react": "~7.3.2",
56-
"typescript": "^5.9.3"
56+
"typescript": "^5.9.3",
57+
"zod": "^4.3.6"
5758
},
5859
"peerDependencies": {
5960
"@mui/icons-material": ">=6 <8",
6061
"@mui/material": ">=6 <8",
6162
"react": "^19",
62-
"react-dom": "^19"
63+
"react-dom": "^19",
64+
"zod": "^4"
6365
},
6466
"publishConfig": {
6567
"access": "public"

packages/modules/packages/diviner/src/hooks/node/useWeakDivinersFromNode.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { exists } from '@xylabs/exists'
1+
import { exists } from '@xylabs/sdk-js'
22
import type { DivinerInstance } from '@xyo-network/diviner-model'
33
import { asDivinerInstance } from '@xyo-network/diviner-model'
44
import type { ModuleIdentifier } from '@xyo-network/module-model'

packages/modules/packages/module/package.json

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@
4444
],
4545
"dependencies": {
4646
"@xylabs/eth-address": "~5.0.64",
47-
"@xylabs/react-button": "~7.1.9",
48-
"@xylabs/react-crypto": "~7.1.9",
49-
"@xylabs/react-flexbox": "~7.1.9",
50-
"@xylabs/react-promise": "~7.1.9",
47+
"@xylabs/react-button": "~7.1.12",
48+
"@xylabs/react-crypto": "~7.1.12",
49+
"@xylabs/react-flexbox": "~7.1.12",
50+
"@xylabs/react-promise": "~7.1.12",
5151
"@xylabs/sdk-js": "~5.0.64",
5252
"@xyo-network/diviner-model": "~5.3.2",
5353
"@xyo-network/module-model": "~5.3.2",
@@ -58,8 +58,8 @@
5858
"@mui/material": "~7.3.7",
5959
"@storybook/react-vite": "~10.2.1",
6060
"@types/react": "^19.2.10",
61-
"@xylabs/hex": "~5.0.64",
62-
"@xylabs/react-async-effect": "~7.1.9",
61+
"@xylabs/react-async-effect": "~7.1.12",
62+
"@xylabs/sdk-js": "~5.0.64",
6363
"@xylabs/ts-scripts-yarn3": "~7.3.2",
6464
"@xylabs/tsconfig": "~7.3.2",
6565
"@xylabs/tsconfig-dom": "~7.3.2",
@@ -74,14 +74,16 @@
7474
"react-router-dom": "^7.13.0",
7575
"storybook": "~10.2.1",
7676
"typescript": "^5.9.3",
77-
"vite": "~7.3.1"
77+
"vite": "~7.3.1",
78+
"zod": "^4.3.6"
7879
},
7980
"peerDependencies": {
8081
"@mui/icons-material": ">=6 <8",
8182
"@mui/material": ">=6 <8",
8283
"react": "^19",
8384
"react-dom": "^19",
84-
"react-router-dom": "^7"
85+
"react-router-dom": "^7",
86+
"zod": "^4"
8587
},
8688
"publishConfig": {
8789
"access": "public"

packages/modules/packages/node/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,10 @@
4444
],
4545
"dependencies": {
4646
"@mui/x-tree-view": "~8.26.0",
47-
"@xylabs/exists": "~5.0.64",
48-
"@xylabs/logger": "~5.0.64",
49-
"@xylabs/react-async-effect": "~7.1.9",
50-
"@xylabs/react-flexbox": "~7.1.9",
51-
"@xylabs/react-promise": "~7.1.9",
52-
"@xylabs/typeof": "~5.0.64",
47+
"@xylabs/react-async-effect": "~7.1.12",
48+
"@xylabs/react-flexbox": "~7.1.12",
49+
"@xylabs/react-promise": "~7.1.12",
50+
"@xylabs/sdk-js": "~5.0.64",
5351
"@xyo-network/module-abstract": "~5.3.2",
5452
"@xyo-network/module-model": "~5.3.2",
5553
"@xyo-network/node-model": "~5.3.2",
@@ -65,7 +63,7 @@
6563
"@mui/system": "~7.3.7",
6664
"@storybook/react-vite": "~10.2.1",
6765
"@types/react": "^19.2.10",
68-
"@xylabs/object": "~5.0.64",
66+
"@xylabs/sdk-js": "~5.0.64",
6967
"@xylabs/ts-scripts-yarn3": "~7.3.2",
7068
"@xylabs/tsconfig": "~7.3.2",
7169
"@xylabs/tsconfig-dom": "~7.3.2",
@@ -78,13 +76,15 @@
7876
"react-dom": "^19.2.4",
7977
"storybook": "~10.2.1",
8078
"typescript": "^5.9.3",
81-
"vite": "~7.3.1"
79+
"vite": "~7.3.1",
80+
"zod": "^4.3.6"
8281
},
8382
"peerDependencies": {
8483
"@mui/icons-material": ">=6 <8",
8584
"@mui/material": ">=6 <8",
8685
"react": "^19",
87-
"react-dom": "^19"
86+
"react-dom": "^19",
87+
"zod": "^4"
8888
},
8989
"publishConfig": {
9090
"access": "public"

packages/modules/packages/node/packages/context/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"src"
4444
],
4545
"dependencies": {
46-
"@xylabs/react-shared": "~7.1.9",
46+
"@xylabs/react-shared": "~7.1.12",
4747
"@xyo-network/module-model": "~5.3.2",
4848
"@xyo-network/node-model": "~5.3.2"
4949
},

packages/modules/packages/node/packages/provider/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@
4343
"src"
4444
],
4545
"dependencies": {
46-
"@xylabs/forget": "~5.0.64",
47-
"@xylabs/react-async-effect": "~7.1.9",
48-
"@xylabs/react-shared": "~7.1.9",
46+
"@xylabs/react-async-effect": "~7.1.12",
47+
"@xylabs/react-shared": "~7.1.12",
48+
"@xylabs/sdk-js": "~5.0.64",
4949
"@xyo-network/module-model": "~5.3.2",
5050
"@xyo-network/node-memory": "~5.3.2",
5151
"@xyo-network/node-model": "~5.3.2",

packages/modules/packages/node/src/components/NodeModulesBox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { exists } from '@xylabs/exists'
21
import type { FlexBoxProps } from '@xylabs/react-flexbox'
32
import { FlexCol } from '@xylabs/react-flexbox'
3+
import { exists } from '@xylabs/sdk-js'
44
import type { NodeInstance } from '@xyo-network/node-model'
55
import React from 'react'
66

0 commit comments

Comments
 (0)