@xyo-network/key-model 4.0.2 → 4.1.0

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.
Files changed (40) hide show
  1. package/build/neutral/Key/AddressValue.d.ts +10 -0
  2. package/build/neutral/Key/AddressValue.d.ts.map +1 -0
  3. package/build/neutral/Key/EllipticKey.d.ts +4 -0
  4. package/build/neutral/Key/EllipticKey.d.ts.map +1 -0
  5. package/build/neutral/Key/PrivateKey.d.ts +15 -0
  6. package/build/neutral/Key/PrivateKey.d.ts.map +1 -0
  7. package/build/neutral/Key/PublicKey.d.ts +11 -0
  8. package/build/neutral/Key/PublicKey.d.ts.map +1 -0
  9. package/build/neutral/Key/index.d.ts +4 -0
  10. package/build/neutral/Key/index.d.ts.map +1 -0
  11. package/build/neutral/index.d.ts +2 -0
  12. package/build/neutral/index.d.ts.map +1 -0
  13. package/build/node/Key/AddressValue.d.ts +10 -0
  14. package/build/node/Key/AddressValue.d.ts.map +1 -0
  15. package/build/node/Key/EllipticKey.d.ts +4 -0
  16. package/build/node/Key/EllipticKey.d.ts.map +1 -0
  17. package/build/node/Key/PrivateKey.d.ts +15 -0
  18. package/build/node/Key/PrivateKey.d.ts.map +1 -0
  19. package/build/node/Key/PublicKey.d.ts +11 -0
  20. package/build/node/Key/PublicKey.d.ts.map +1 -0
  21. package/build/node/Key/index.d.ts +4 -0
  22. package/build/node/Key/index.d.ts.map +1 -0
  23. package/build/node/index.d.ts +2 -0
  24. package/build/node/index.d.ts.map +1 -0
  25. package/dist/browser/index.d.ts +37 -0
  26. package/dist/neutral/index.d.ts +37 -0
  27. package/dist/node/index.d.ts +37 -0
  28. package/package.json +7 -7
  29. /package/{dist/types → build/browser}/Key/AddressValue.d.ts +0 -0
  30. /package/{dist/types → build/browser}/Key/AddressValue.d.ts.map +0 -0
  31. /package/{dist/types → build/browser}/Key/EllipticKey.d.ts +0 -0
  32. /package/{dist/types → build/browser}/Key/EllipticKey.d.ts.map +0 -0
  33. /package/{dist/types → build/browser}/Key/PrivateKey.d.ts +0 -0
  34. /package/{dist/types → build/browser}/Key/PrivateKey.d.ts.map +0 -0
  35. /package/{dist/types → build/browser}/Key/PublicKey.d.ts +0 -0
  36. /package/{dist/types → build/browser}/Key/PublicKey.d.ts.map +0 -0
  37. /package/{dist/types → build/browser}/Key/index.d.ts +0 -0
  38. /package/{dist/types → build/browser}/Key/index.d.ts.map +0 -0
  39. /package/{dist/types → build/browser}/index.d.ts +0 -0
  40. /package/{dist/types → build/browser}/index.d.ts.map +0 -0
@@ -0,0 +1,10 @@
1
+ import type { EllipticKeyInstance } from './EllipticKey.ts';
2
+ export interface AddressValueInstance extends EllipticKeyInstance {
3
+ }
4
+ export interface AddressValueStatic {
5
+ new (address: ArrayBuffer): AddressValueInstance;
6
+ addressFromAddressOrPublicKey(bytes: ArrayBufferLike): ArrayBufferLike;
7
+ addressFromPublicKey(key: ArrayBufferLike): ArrayBufferLike;
8
+ isAddress(value: unknown): boolean;
9
+ }
10
+ //# sourceMappingURL=AddressValue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AddressValue.d.ts","sourceRoot":"","sources":["../../../src/Key/AddressValue.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAA;AAE3D,MAAM,WAAW,oBAAqB,SAAQ,mBAAmB;CAAG;AAEpE,MAAM,WAAW,kBAAkB;IACjC,KAAK,OAAO,EAAE,WAAW,GAAG,oBAAoB,CAAA;IAChD,6BAA6B,CAAC,KAAK,EAAE,eAAe,GAAG,eAAe,CAAA;IACtE,oBAAoB,CAAC,GAAG,EAAE,eAAe,GAAG,eAAe,CAAA;IAC3D,SAAS,CAAC,KAAK,EAAE,OAAO,GAAG,OAAO,CAAA;CACnC"}
@@ -0,0 +1,4 @@
1
+ import type { DataInstance } from '@xyo-network/data';
2
+ export interface EllipticKeyInstance extends DataInstance {
3
+ }
4
+ //# sourceMappingURL=EllipticKey.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EllipticKey.d.ts","sourceRoot":"","sources":["../../../src/Key/EllipticKey.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAA;AAErD,MAAM,WAAW,mBAAoB,SAAQ,YAAY;CAAG"}
@@ -0,0 +1,15 @@
1
+ import type { EllipticKeyInstance } from './EllipticKey.ts';
2
+ import type { PublicKeyInstance } from './PublicKey.ts';
3
+ export interface PrivateKeyConfig {
4
+ privateKeyData?: ArrayBufferLike;
5
+ }
6
+ export interface PrivateKeyInstance extends EllipticKeyInstance {
7
+ public: PublicKeyInstance;
8
+ sign: (hash: ArrayBufferLike) => ArrayBufferLike | Promise<ArrayBufferLike>;
9
+ verify: (msg: ArrayBufferLike, signature: ArrayBufferLike) => boolean | Promise<boolean>;
10
+ }
11
+ export interface PrivateKeyStatic {
12
+ create(value: ArrayBufferLike | bigint): Promise<PrivateKeyInstance>;
13
+ isPrivateKey(value: unknown): boolean;
14
+ }
15
+ //# sourceMappingURL=PrivateKey.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PrivateKey.d.ts","sourceRoot":"","sources":["../../../src/Key/PrivateKey.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAA;AAC3D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAA;AAEvD,MAAM,WAAW,gBAAgB;IAC/B,cAAc,CAAC,EAAE,eAAe,CAAA;CACjC;AAED,MAAM,WAAW,kBAAmB,SAAQ,mBAAmB;IAC7D,MAAM,EAAE,iBAAiB,CAAA;IACzB,IAAI,EAAE,CAAC,IAAI,EAAE,eAAe,KAAK,eAAe,GAAG,OAAO,CAAC,eAAe,CAAC,CAAA;IAC3E,MAAM,EAAE,CAAC,GAAG,EAAE,eAAe,EAAE,SAAS,EAAE,eAAe,KAAK,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAA;CACzF;AAED,MAAM,WAAW,gBAAgB;IAC/B,MAAM,CAAC,KAAK,EAAE,eAAe,GAAG,MAAM,GAAG,OAAO,CAAC,kBAAkB,CAAC,CAAA;IACpE,YAAY,CAAC,KAAK,EAAE,OAAO,GAAG,OAAO,CAAA;CACtC"}
@@ -0,0 +1,11 @@
1
+ import type { AddressValueInstance } from './AddressValue.ts';
2
+ import type { EllipticKeyInstance } from './EllipticKey.ts';
3
+ export interface PublicKeyInstance extends EllipticKeyInstance {
4
+ get address(): AddressValueInstance;
5
+ verify(msg: ArrayBufferLike, signature: ArrayBufferLike): boolean | Promise<boolean>;
6
+ }
7
+ export interface PublicKeyStatic {
8
+ create(bytes: ArrayBufferLike): Promise<PublicKeyInstance>;
9
+ isPublicKey(value: unknown): boolean;
10
+ }
11
+ //# sourceMappingURL=PublicKey.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PublicKey.d.ts","sourceRoot":"","sources":["../../../src/Key/PublicKey.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAA;AAC7D,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAA;AAE3D,MAAM,WAAW,iBAAkB,SAAQ,mBAAmB;IAC5D,IAAI,OAAO,IAAI,oBAAoB,CAAA;IACnC,MAAM,CAAC,GAAG,EAAE,eAAe,EAAE,SAAS,EAAE,eAAe,GAAG,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAA;CACrF;AAED,MAAM,WAAW,eAAe;IAC9B,MAAM,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAAA;IAC1D,WAAW,CAAC,KAAK,EAAE,OAAO,GAAG,OAAO,CAAA;CACrC"}
@@ -0,0 +1,4 @@
1
+ export * from './AddressValue.ts';
2
+ export * from './PrivateKey.ts';
3
+ export * from './PublicKey.ts';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Key/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,gBAAgB,CAAA"}
@@ -0,0 +1,2 @@
1
+ export * from './Key/index.ts';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAA"}
@@ -0,0 +1,10 @@
1
+ import type { EllipticKeyInstance } from './EllipticKey.ts';
2
+ export interface AddressValueInstance extends EllipticKeyInstance {
3
+ }
4
+ export interface AddressValueStatic {
5
+ new (address: ArrayBuffer): AddressValueInstance;
6
+ addressFromAddressOrPublicKey(bytes: ArrayBufferLike): ArrayBufferLike;
7
+ addressFromPublicKey(key: ArrayBufferLike): ArrayBufferLike;
8
+ isAddress(value: unknown): boolean;
9
+ }
10
+ //# sourceMappingURL=AddressValue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AddressValue.d.ts","sourceRoot":"","sources":["../../../src/Key/AddressValue.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAA;AAE3D,MAAM,WAAW,oBAAqB,SAAQ,mBAAmB;CAAG;AAEpE,MAAM,WAAW,kBAAkB;IACjC,KAAK,OAAO,EAAE,WAAW,GAAG,oBAAoB,CAAA;IAChD,6BAA6B,CAAC,KAAK,EAAE,eAAe,GAAG,eAAe,CAAA;IACtE,oBAAoB,CAAC,GAAG,EAAE,eAAe,GAAG,eAAe,CAAA;IAC3D,SAAS,CAAC,KAAK,EAAE,OAAO,GAAG,OAAO,CAAA;CACnC"}
@@ -0,0 +1,4 @@
1
+ import type { DataInstance } from '@xyo-network/data';
2
+ export interface EllipticKeyInstance extends DataInstance {
3
+ }
4
+ //# sourceMappingURL=EllipticKey.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EllipticKey.d.ts","sourceRoot":"","sources":["../../../src/Key/EllipticKey.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAA;AAErD,MAAM,WAAW,mBAAoB,SAAQ,YAAY;CAAG"}
@@ -0,0 +1,15 @@
1
+ import type { EllipticKeyInstance } from './EllipticKey.ts';
2
+ import type { PublicKeyInstance } from './PublicKey.ts';
3
+ export interface PrivateKeyConfig {
4
+ privateKeyData?: ArrayBufferLike;
5
+ }
6
+ export interface PrivateKeyInstance extends EllipticKeyInstance {
7
+ public: PublicKeyInstance;
8
+ sign: (hash: ArrayBufferLike) => ArrayBufferLike | Promise<ArrayBufferLike>;
9
+ verify: (msg: ArrayBufferLike, signature: ArrayBufferLike) => boolean | Promise<boolean>;
10
+ }
11
+ export interface PrivateKeyStatic {
12
+ create(value: ArrayBufferLike | bigint): Promise<PrivateKeyInstance>;
13
+ isPrivateKey(value: unknown): boolean;
14
+ }
15
+ //# sourceMappingURL=PrivateKey.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PrivateKey.d.ts","sourceRoot":"","sources":["../../../src/Key/PrivateKey.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAA;AAC3D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAA;AAEvD,MAAM,WAAW,gBAAgB;IAC/B,cAAc,CAAC,EAAE,eAAe,CAAA;CACjC;AAED,MAAM,WAAW,kBAAmB,SAAQ,mBAAmB;IAC7D,MAAM,EAAE,iBAAiB,CAAA;IACzB,IAAI,EAAE,CAAC,IAAI,EAAE,eAAe,KAAK,eAAe,GAAG,OAAO,CAAC,eAAe,CAAC,CAAA;IAC3E,MAAM,EAAE,CAAC,GAAG,EAAE,eAAe,EAAE,SAAS,EAAE,eAAe,KAAK,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAA;CACzF;AAED,MAAM,WAAW,gBAAgB;IAC/B,MAAM,CAAC,KAAK,EAAE,eAAe,GAAG,MAAM,GAAG,OAAO,CAAC,kBAAkB,CAAC,CAAA;IACpE,YAAY,CAAC,KAAK,EAAE,OAAO,GAAG,OAAO,CAAA;CACtC"}
@@ -0,0 +1,11 @@
1
+ import type { AddressValueInstance } from './AddressValue.ts';
2
+ import type { EllipticKeyInstance } from './EllipticKey.ts';
3
+ export interface PublicKeyInstance extends EllipticKeyInstance {
4
+ get address(): AddressValueInstance;
5
+ verify(msg: ArrayBufferLike, signature: ArrayBufferLike): boolean | Promise<boolean>;
6
+ }
7
+ export interface PublicKeyStatic {
8
+ create(bytes: ArrayBufferLike): Promise<PublicKeyInstance>;
9
+ isPublicKey(value: unknown): boolean;
10
+ }
11
+ //# sourceMappingURL=PublicKey.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PublicKey.d.ts","sourceRoot":"","sources":["../../../src/Key/PublicKey.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAA;AAC7D,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAA;AAE3D,MAAM,WAAW,iBAAkB,SAAQ,mBAAmB;IAC5D,IAAI,OAAO,IAAI,oBAAoB,CAAA;IACnC,MAAM,CAAC,GAAG,EAAE,eAAe,EAAE,SAAS,EAAE,eAAe,GAAG,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAA;CACrF;AAED,MAAM,WAAW,eAAe;IAC9B,MAAM,CAAC,KAAK,EAAE,eAAe,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAAA;IAC1D,WAAW,CAAC,KAAK,EAAE,OAAO,GAAG,OAAO,CAAA;CACrC"}
@@ -0,0 +1,4 @@
1
+ export * from './AddressValue.ts';
2
+ export * from './PrivateKey.ts';
3
+ export * from './PublicKey.ts';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Key/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,gBAAgB,CAAA"}
@@ -0,0 +1,2 @@
1
+ export * from './Key/index.ts';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAA"}
@@ -0,0 +1,37 @@
1
+ import { DataInstance } from '@xyo-network/data';
2
+
3
+ interface EllipticKeyInstance extends DataInstance {
4
+ }
5
+
6
+ interface AddressValueInstance extends EllipticKeyInstance {
7
+ }
8
+ interface AddressValueStatic {
9
+ new (address: ArrayBuffer): AddressValueInstance;
10
+ addressFromAddressOrPublicKey(bytes: ArrayBufferLike): ArrayBufferLike;
11
+ addressFromPublicKey(key: ArrayBufferLike): ArrayBufferLike;
12
+ isAddress(value: unknown): boolean;
13
+ }
14
+
15
+ interface PublicKeyInstance extends EllipticKeyInstance {
16
+ get address(): AddressValueInstance;
17
+ verify(msg: ArrayBufferLike, signature: ArrayBufferLike): boolean | Promise<boolean>;
18
+ }
19
+ interface PublicKeyStatic {
20
+ create(bytes: ArrayBufferLike): Promise<PublicKeyInstance>;
21
+ isPublicKey(value: unknown): boolean;
22
+ }
23
+
24
+ interface PrivateKeyConfig {
25
+ privateKeyData?: ArrayBufferLike;
26
+ }
27
+ interface PrivateKeyInstance extends EllipticKeyInstance {
28
+ public: PublicKeyInstance;
29
+ sign: (hash: ArrayBufferLike) => ArrayBufferLike | Promise<ArrayBufferLike>;
30
+ verify: (msg: ArrayBufferLike, signature: ArrayBufferLike) => boolean | Promise<boolean>;
31
+ }
32
+ interface PrivateKeyStatic {
33
+ create(value: ArrayBufferLike | bigint): Promise<PrivateKeyInstance>;
34
+ isPrivateKey(value: unknown): boolean;
35
+ }
36
+
37
+ export type { AddressValueInstance, AddressValueStatic, PrivateKeyConfig, PrivateKeyInstance, PrivateKeyStatic, PublicKeyInstance, PublicKeyStatic };
@@ -0,0 +1,37 @@
1
+ import { DataInstance } from '@xyo-network/data';
2
+
3
+ interface EllipticKeyInstance extends DataInstance {
4
+ }
5
+
6
+ interface AddressValueInstance extends EllipticKeyInstance {
7
+ }
8
+ interface AddressValueStatic {
9
+ new (address: ArrayBuffer): AddressValueInstance;
10
+ addressFromAddressOrPublicKey(bytes: ArrayBufferLike): ArrayBufferLike;
11
+ addressFromPublicKey(key: ArrayBufferLike): ArrayBufferLike;
12
+ isAddress(value: unknown): boolean;
13
+ }
14
+
15
+ interface PublicKeyInstance extends EllipticKeyInstance {
16
+ get address(): AddressValueInstance;
17
+ verify(msg: ArrayBufferLike, signature: ArrayBufferLike): boolean | Promise<boolean>;
18
+ }
19
+ interface PublicKeyStatic {
20
+ create(bytes: ArrayBufferLike): Promise<PublicKeyInstance>;
21
+ isPublicKey(value: unknown): boolean;
22
+ }
23
+
24
+ interface PrivateKeyConfig {
25
+ privateKeyData?: ArrayBufferLike;
26
+ }
27
+ interface PrivateKeyInstance extends EllipticKeyInstance {
28
+ public: PublicKeyInstance;
29
+ sign: (hash: ArrayBufferLike) => ArrayBufferLike | Promise<ArrayBufferLike>;
30
+ verify: (msg: ArrayBufferLike, signature: ArrayBufferLike) => boolean | Promise<boolean>;
31
+ }
32
+ interface PrivateKeyStatic {
33
+ create(value: ArrayBufferLike | bigint): Promise<PrivateKeyInstance>;
34
+ isPrivateKey(value: unknown): boolean;
35
+ }
36
+
37
+ export type { AddressValueInstance, AddressValueStatic, PrivateKeyConfig, PrivateKeyInstance, PrivateKeyStatic, PublicKeyInstance, PublicKeyStatic };
@@ -0,0 +1,37 @@
1
+ import { DataInstance } from '@xyo-network/data';
2
+
3
+ interface EllipticKeyInstance extends DataInstance {
4
+ }
5
+
6
+ interface AddressValueInstance extends EllipticKeyInstance {
7
+ }
8
+ interface AddressValueStatic {
9
+ new (address: ArrayBuffer): AddressValueInstance;
10
+ addressFromAddressOrPublicKey(bytes: ArrayBufferLike): ArrayBufferLike;
11
+ addressFromPublicKey(key: ArrayBufferLike): ArrayBufferLike;
12
+ isAddress(value: unknown): boolean;
13
+ }
14
+
15
+ interface PublicKeyInstance extends EllipticKeyInstance {
16
+ get address(): AddressValueInstance;
17
+ verify(msg: ArrayBufferLike, signature: ArrayBufferLike): boolean | Promise<boolean>;
18
+ }
19
+ interface PublicKeyStatic {
20
+ create(bytes: ArrayBufferLike): Promise<PublicKeyInstance>;
21
+ isPublicKey(value: unknown): boolean;
22
+ }
23
+
24
+ interface PrivateKeyConfig {
25
+ privateKeyData?: ArrayBufferLike;
26
+ }
27
+ interface PrivateKeyInstance extends EllipticKeyInstance {
28
+ public: PublicKeyInstance;
29
+ sign: (hash: ArrayBufferLike) => ArrayBufferLike | Promise<ArrayBufferLike>;
30
+ verify: (msg: ArrayBufferLike, signature: ArrayBufferLike) => boolean | Promise<boolean>;
31
+ }
32
+ interface PrivateKeyStatic {
33
+ create(value: ArrayBufferLike | bigint): Promise<PrivateKeyInstance>;
34
+ isPrivateKey(value: unknown): boolean;
35
+ }
36
+
37
+ export type { AddressValueInstance, AddressValueStatic, PrivateKeyConfig, PrivateKeyInstance, PrivateKeyStatic, PublicKeyInstance, PublicKeyStatic };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/key-model",
3
- "version": "4.0.2",
3
+ "version": "4.1.0",
4
4
  "description": "Primary SDK for using XYO Protocol 2.0",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -21,20 +21,20 @@
21
21
  "type": "module",
22
22
  "exports": {
23
23
  ".": {
24
- "types": "./dist/types/index.d.ts",
24
+ "types": "./dist/neutral/index.d.ts",
25
25
  "default": "./dist/neutral/index.mjs"
26
26
  },
27
27
  "./package.json": "./package.json"
28
28
  },
29
29
  "module": "dist/neutral/index.mjs",
30
- "types": "dist/types/index.d.ts",
30
+ "types": "dist/neutral/index.d.ts",
31
31
  "dependencies": {
32
- "@xyo-network/data": "^4.0.2"
32
+ "@xyo-network/data": "^4.1.0"
33
33
  },
34
34
  "devDependencies": {
35
- "@types/node": "^24.0.10",
36
- "@xylabs/ts-scripts-yarn3": "^6.5.12",
37
- "@xylabs/tsconfig": "^6.5.12",
35
+ "@types/node": "^24.0.13",
36
+ "@xylabs/ts-scripts-yarn3": "^7.0.0-rc.20",
37
+ "@xylabs/tsconfig": "^7.0.0-rc.20",
38
38
  "typescript": "^5.8.3"
39
39
  },
40
40
  "publishConfig": {
File without changes
File without changes
File without changes