@xyo-network/sdk-js 3.9.36 → 3.9.38

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/eslint.config.mjs CHANGED
@@ -8,7 +8,7 @@ import {
8
8
  } from '@xylabs/eslint-config-flat'
9
9
 
10
10
  export default [
11
- { ignores: ['.yarn', 'dist', '**/dist/**', 'build', '**/build/**', 'node_modules/**', 'public', 'storybook-static', 'eslint.config.mjs'] },
11
+ { ignores: ['.yarn', 'dist', '**/dist/**', 'build', '**/build/**', 'node_modules/**', 'public', '**/storybook-static', '**/.storybook'] },
12
12
  unicornConfig,
13
13
  workspacesConfig,
14
14
  rulesConfig,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/sdk-js",
3
- "version": "3.9.36",
3
+ "version": "3.9.38",
4
4
  "description": "Primary SDK for using XYO Protocol 2.0",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -21,14 +21,6 @@
21
21
  "type": "module",
22
22
  "exports": {
23
23
  ".": {
24
- "browser": {
25
- "types": "./dist/types/index.d.ts",
26
- "default": "./dist/browser/index.mjs"
27
- },
28
- "node": {
29
- "types": "./dist/types/index.d.ts",
30
- "default": "./dist/node/index.mjs"
31
- },
32
24
  "types": "./dist/types/index.d.ts",
33
25
  "default": "./dist/neutral/index.mjs"
34
26
  },
@@ -51,23 +43,22 @@
51
43
  "free-3033": "kill -9 $(lsof -t -i :3033)",
52
44
  "free-8080": "kill -9 $(lsof -t -i :8080)",
53
45
  "free-mongo": "kill -9 $(lsof -t -i :55391) && kill -9 $(lsof -t -i :55393)",
54
- "lint-pkg": "npmPkgJsonLint .",
55
46
  "test": "vitest --watch false"
56
47
  },
57
48
  "resolutions": {
58
- "@noble/hashes": "^1.6.1",
49
+ "@noble/hashes": "^1",
59
50
  "axios": "^1",
60
51
  "ethers": "^6",
61
52
  "fake-indexeddb": "^4",
62
53
  "quick-lru": "^5"
63
54
  },
64
55
  "dependencies": {
65
- "@xyo-network/core-payload-plugins": "^3.9.36",
66
- "@xyo-network/manifest": "^3.9.36",
67
- "@xyo-network/modules": "^3.9.36",
68
- "@xyo-network/protocol": "^3.9.36",
69
- "@xyo-network/sdk-utils": "^3.9.36",
70
- "@xyo-network/shared": "^3.9.36"
56
+ "@xyo-network/core-payload-plugins": "^3.9.38",
57
+ "@xyo-network/manifest": "^3.9.38",
58
+ "@xyo-network/modules": "^3.9.38",
59
+ "@xyo-network/protocol": "^3.9.38",
60
+ "@xyo-network/sdk-utils": "^3.9.38",
61
+ "@xyo-network/shared": "^3.9.38"
71
62
  },
72
63
  "devDependencies": {
73
64
  "@firebase/app": "^0.11.2",
@@ -76,26 +67,26 @@
76
67
  "@types/supertest": "^6.0.2",
77
68
  "@typescript-eslint/eslint-plugin": "^8.26.1",
78
69
  "@typescript-eslint/parser": "^8.26.1",
79
- "@vitest/coverage-v8": "^3.0.8",
80
- "@xylabs/eslint-config-flat": "^6.0.5",
81
- "@xylabs/forget": "^4.6.0",
82
- "@xylabs/ts-scripts-yarn3": "^6.0.5",
83
- "@xylabs/tsconfig": "^6.0.5",
84
- "@xylabs/vitest-extended": "^4.6.0",
70
+ "@vitest/coverage-v8": "^3.0.9",
71
+ "@xylabs/eslint-config-flat": "^6.1.4",
72
+ "@xylabs/forget": "^4.6.4",
73
+ "@xylabs/ts-scripts-yarn3": "^6.1.4",
74
+ "@xylabs/tsconfig": "^6.1.4",
75
+ "@xylabs/vitest-extended": "^4.6.4",
85
76
  "dotenv": "^16.4.7",
86
77
  "eslint": "^9.22.0",
87
- "eslint-import-resolver-typescript": "^3.8.5",
78
+ "eslint-import-resolver-typescript": "^4.1.1",
88
79
  "jsdom": "^26.0.0",
89
- "knip": "^5.45.0",
80
+ "knip": "^5.46.0",
90
81
  "reflect-metadata": "^0.2.2",
91
82
  "supertest": "^7.0.0",
92
83
  "tslib": "^2.8.1",
93
- "typedoc": "^0.27.9",
84
+ "typedoc": "^0.28.0",
94
85
  "typedoc-material-theme": "^1.3.0",
95
86
  "typescript": "^5.8.2",
96
- "vitest": "^3.0.8"
87
+ "vitest": "^3.0.9"
97
88
  },
98
- "packageManager": "yarn@4.6.0",
89
+ "packageManager": "yarn@4.7.0",
99
90
  "volta": {
100
91
  "node": "22.3.0",
101
92
  "yarn": "1.22.22"
package/xy.config.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  import type { XyTsupConfig } from '@xylabs/ts-scripts-yarn3'
2
2
  const config: XyTsupConfig = {
3
3
  compile: {
4
- browser: { src: true },
4
+ browser: {},
5
5
  neutral: { src: true },
6
- node: { src: true },
6
+ node: {},
7
7
  },
8
8
  }
9
9
 
@@ -1,8 +0,0 @@
1
- // src/index.ts
2
- export * from "@xyo-network/core-payload-plugins";
3
- export * from "@xyo-network/manifest";
4
- export * from "@xyo-network/modules";
5
- export * from "@xyo-network/protocol";
6
- export * from "@xyo-network/sdk-utils";
7
- export * from "@xyo-network/shared";
8
- //# sourceMappingURL=index.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/core-payload-plugins'\nexport * from '@xyo-network/manifest'\nexport * from '@xyo-network/modules'\nexport * from '@xyo-network/protocol'\nexport * from '@xyo-network/sdk-utils'\nexport * from '@xyo-network/shared'\n"],"mappings":";AAAA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;","names":[]}
@@ -1,8 +0,0 @@
1
- // src/index.ts
2
- export * from "@xyo-network/core-payload-plugins";
3
- export * from "@xyo-network/manifest";
4
- export * from "@xyo-network/modules";
5
- export * from "@xyo-network/protocol";
6
- export * from "@xyo-network/sdk-utils";
7
- export * from "@xyo-network/shared";
8
- //# sourceMappingURL=index.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/core-payload-plugins'\nexport * from '@xyo-network/manifest'\nexport * from '@xyo-network/modules'\nexport * from '@xyo-network/protocol'\nexport * from '@xyo-network/sdk-utils'\nexport * from '@xyo-network/shared'\n"],"mappings":";AAAA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;","names":[]}