@xyo-network/react-manifest 5.0.0 → 5.0.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/react-manifest",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.2",
|
|
4
4
|
"description": "Common React library for all XYO projects that use React",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"xyo",
|
|
@@ -37,18 +37,18 @@
|
|
|
37
37
|
"./package.json": "./package.json"
|
|
38
38
|
},
|
|
39
39
|
"module": "dist/browser/index.mjs",
|
|
40
|
-
"types": "dist/
|
|
40
|
+
"types": "dist/types/index.d.ts",
|
|
41
41
|
"scripts": {
|
|
42
42
|
"license": "yarn license-checker --exclude \"MIT, ISC, Apache-2.0, BSD, BSD-2-Clause, CC-BY-4.0, Unlicense, CC-BY-3.0, CC0-1.0\"",
|
|
43
43
|
"lint-pkg": "npmPkgJsonLint ."
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@scure/bip39": "^1.5.4",
|
|
47
|
-
"@xylabs/react-promise": "^6.0.
|
|
47
|
+
"@xylabs/react-promise": "^6.0.4",
|
|
48
48
|
"@xyo-network/account": "^3.9.37",
|
|
49
49
|
"@xyo-network/manifest": "^3.9.37",
|
|
50
50
|
"@xyo-network/module-factory-locator": "^3.9.37",
|
|
51
|
-
"@xyo-network/react-node-provider": "^5.0.
|
|
51
|
+
"@xyo-network/react-node-provider": "^5.0.2",
|
|
52
52
|
"@xyo-network/wallet-model": "^3.9.37"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"@mui/styles": "^6.4.7",
|
|
58
58
|
"@storybook/react": "^8.6.4",
|
|
59
59
|
"@types/react": "^19.0.10",
|
|
60
|
-
"@xylabs/ts-scripts-yarn3": "^6.0.
|
|
61
|
-
"@xylabs/tsconfig-react": "^6.0.
|
|
60
|
+
"@xylabs/ts-scripts-yarn3": "^6.0.8",
|
|
61
|
+
"@xylabs/tsconfig-react": "^6.0.8",
|
|
62
62
|
"@xyo-network/diviner-abstract": "^3.9.37",
|
|
63
63
|
"@xyo-network/diviner-model": "^3.9.37",
|
|
64
64
|
"@xyo-network/diviner-payload-memory": "^3.9.37",
|
|
@@ -3,7 +3,7 @@ import type { PackageManifestPayload } from '@xyo-network/manifest'
|
|
|
3
3
|
import type { ModuleFactoryLocator } from '@xyo-network/module-factory-locator'
|
|
4
4
|
|
|
5
5
|
import type { CreatablePackageManifest } from '../../types/index.ts'
|
|
6
|
-
import archivistManifest from './archivist-manifest.json'
|
|
6
|
+
import archivistManifest from './archivist-manifest.json' with { type: 'json' }
|
|
7
7
|
|
|
8
8
|
export const ArchivistManifestNode: CreatablePackageManifest = (locator: ModuleFactoryLocator): PackageManifestPayload => {
|
|
9
9
|
locator.register(MemoryPayloadDiviner)
|
|
@@ -4,7 +4,7 @@ import { TimestampWitness } from '@xyo-network/witness-timestamp'
|
|
|
4
4
|
|
|
5
5
|
import type { CreatablePackageManifest } from '../../types/index.ts'
|
|
6
6
|
import { AddDayDiviner } from '../modules/index.ts'
|
|
7
|
-
import sentinelManifest from './sentinel-manifest.json'
|
|
7
|
+
import sentinelManifest from './sentinel-manifest.json' with { type: 'json' }
|
|
8
8
|
|
|
9
9
|
export const SentinelManifestNode: CreatablePackageManifest = (locator: ModuleFactoryLocator): PackageManifestPayload => {
|
|
10
10
|
locator.register(TimestampWitness)
|