@xyo-network/sdk-js 3.0.0 → 3.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/eslint.config.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  // eslint.config.mjs
2
2
 
3
- import { config as xylabsConfig, rulesConfig } from '@xylabs/eslint-config-flat'
3
+ import { config as xylabsConfig, rulesConfig, importConfig } from '@xylabs/eslint-config-flat'
4
4
 
5
5
  export default [
6
6
  {
@@ -33,4 +33,11 @@ export default [
33
33
  ],
34
34
  },
35
35
  },
36
+ {
37
+ ...importConfig,
38
+ rules: {
39
+ ...importConfig.rules,
40
+ 'import-x/no-cycle': ['warn', { maxDepth: 5 }]
41
+ }
42
+ }
36
43
  ]
package/package.json CHANGED
@@ -12,30 +12,30 @@
12
12
  "packages/**/*"
13
13
  ],
14
14
  "dependencies": {
15
- "@xyo-network/core-payload-plugins": "^3.0.0",
16
- "@xyo-network/manifest": "^3.0.0",
17
- "@xyo-network/modules": "^3.0.0",
18
- "@xyo-network/protocol": "^3.0.0",
19
- "@xyo-network/sdk-utils": "^3.0.0",
20
- "@xyo-network/shared": "^3.0.0"
15
+ "@xyo-network/core-payload-plugins": "^3.0.2",
16
+ "@xyo-network/manifest": "^3.0.2",
17
+ "@xyo-network/modules": "^3.0.2",
18
+ "@xyo-network/protocol": "^3.0.2",
19
+ "@xyo-network/sdk-utils": "^3.0.2",
20
+ "@xyo-network/shared": "^3.0.2"
21
21
  },
22
22
  "description": "Primary SDK for using XYO Protocol 2.0",
23
23
  "devDependencies": {
24
24
  "@babel/core": "^7.25.2",
25
- "@stylistic/eslint-plugin": "^2.6.1",
25
+ "@stylistic/eslint-plugin": "^2.6.2",
26
26
  "@types/jest": "^29.5.12",
27
27
  "@types/supertest": "^6.0.2",
28
- "@typescript-eslint/eslint-plugin": "^8.0.1",
29
- "@typescript-eslint/parser": "^8.0.1",
30
- "@xylabs/eslint-config-flat": "next",
31
- "@xylabs/forget": "^3.6.12",
32
- "@xylabs/ts-scripts-yarn3": "next",
33
- "@xylabs/tsconfig": "next",
34
- "@xylabs/tsconfig-dom-jest": "next",
35
- "@xylabs/tsconfig-jest": "next",
28
+ "@typescript-eslint/eslint-plugin": "^8.1.0",
29
+ "@typescript-eslint/parser": "^8.1.0",
30
+ "@xylabs/eslint-config-flat": "^4.0.0-rc.15",
31
+ "@xylabs/forget": "^4.0.0",
32
+ "@xylabs/ts-scripts-yarn3": "^4.0.0-rc.15",
33
+ "@xylabs/tsconfig": "^4.0.0-rc.15",
34
+ "@xylabs/tsconfig-dom-jest": "^4.0.0-rc.15",
35
+ "@xylabs/tsconfig-jest": "^4.0.0-rc.15",
36
36
  "babel-jest": "^29.7.0",
37
37
  "dotenv": "^16.4.5",
38
- "eslint": "^9.8.0",
38
+ "eslint": "^9.9.0",
39
39
  "eslint-import-resolver-typescript": "^3.6.1",
40
40
  "jest": "^29.7.0",
41
41
  "jest-docblock": "^29.7.0",
@@ -45,8 +45,6 @@
45
45
  "jest-runner-groups": "^2.2.0",
46
46
  "jest-sorted": "^1.0.15",
47
47
  "jsdom": "^24.1.1",
48
- "lodash": "^4.17.21",
49
- "lodash-es": "^4.17.21",
50
48
  "reflect-metadata": "^0.2.2",
51
49
  "supertest": "^7.0.0",
52
50
  "ts-jest": "^29.2.4",
@@ -120,7 +118,7 @@
120
118
  "build-typedoc-site": "typedoc"
121
119
  },
122
120
  "sideEffects": false,
123
- "version": "3.0.0",
121
+ "version": "3.0.2",
124
122
  "packageManager": "yarn@4.4.0",
125
123
  "volta": {
126
124
  "node": "22.3.0",
package/vitest.config.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import dotenv from 'dotenv'
2
- // eslint-disable-next-line import/no-internal-modules
2
+ // eslint-disable-next-line import-x/no-internal-modules
3
3
  import { defineConfig } from 'vitest/config'
4
4
 
5
5
  dotenv.config()