@xyo-network/plugins 3.4.3 → 3.4.5

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,23 +1,24 @@
1
- // eslint.config.mjs
2
-
3
- import { typescriptConfig,
1
+ import {
2
+ typescriptConfig,
4
3
  unicornConfig,
5
4
  workspacesConfig,
6
5
  rulesConfig,
7
6
  sonarConfig,
8
- importConfig } from '@xylabs/eslint-config-flat'
9
-
7
+ importConfig,
8
+ } from '@xylabs/eslint-config-flat'
10
9
 
11
10
  export default [
12
- {
13
- ignores: ['.yarn/**', '**/dist/**', 'dist', 'build/**', 'node_modules/**', 'public', '.storybook', 'storybook-static', 'eslint.config.mjs'],
14
- },
11
+ { ignores: ['.yarn', 'dist', '**/dist/**', 'build', '**/build/**', 'node_modules/**', 'public', 'storybook-static', 'eslint.config.mjs', 'packages'] },
15
12
  unicornConfig,
16
13
  workspacesConfig,
17
14
  rulesConfig,
18
15
  typescriptConfig,
16
+ importConfig,
17
+ sonarConfig,
19
18
  {
20
19
  rules: {
20
+ 'sonarjs/prefer-single-boolean-return': ['off'],
21
+ 'import-x/no-unresolved': ['off'],
21
22
  'no-restricted-imports': [
22
23
  'warn',
23
24
  {
@@ -42,12 +43,6 @@ export default [
42
43
  ],
43
44
  },
44
45
  },
45
- {
46
- ...importConfig,
47
- rules: {
48
- ...importConfig.rules,
49
- 'import-x/no-cycle': ['warn', { maxDepth: 5 }],
50
- },
51
- },
52
- sonarConfig,
53
46
  ]
47
+
48
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/plugins",
3
- "version": "3.4.3",
3
+ "version": "3.4.5",
4
4
  "description": "Typescript/Javascript Plugins for XYO Platform",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -21,13 +21,13 @@
21
21
  "type": "module",
22
22
  "exports": {
23
23
  ".": {
24
- "types": "./dist/neutral/index.d.ts",
24
+ "types": "./dist/types/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/neutral/index.d.ts",
30
+ "types": "dist/types/index.d.ts",
31
31
  "workspaces": [
32
32
  "packages/**/*"
33
33
  ],
@@ -48,50 +48,51 @@
48
48
  "quick-lru": "^5"
49
49
  },
50
50
  "dependencies": {
51
- "@xyo-network/payload-plugins": "^3.4.3",
52
- "@xyo-network/payloadset-plugins": "^3.4.3"
51
+ "@xyo-network/payload-plugins": "^3.4.5",
52
+ "@xyo-network/payloadset-plugins": "^3.4.5"
53
53
  },
54
54
  "devDependencies": {
55
- "@babel/core": "^7.26.9",
55
+ "@babel/core": "^7.26.10",
56
56
  "@ethersproject/address": "^5.8.0",
57
57
  "@ethersproject/bignumber": "^5.8.0",
58
- "@stylistic/eslint-plugin": "^4.1.0",
59
- "@types/supertest": "^6.0.2",
60
- "@typescript-eslint/eslint-plugin": "^8.25.0",
61
- "@typescript-eslint/parser": "^8.25.0",
62
- "@xylabs/eslint-config-flat": "^5.0.39",
63
- "@xylabs/forget": "^4.5.1",
64
- "@xylabs/platform": "^4.5.1",
65
- "@xylabs/sdk-api-express-ecs": "^2.1.0",
66
- "@xylabs/ts-scripts-yarn3": "^5.0.39",
67
- "@xylabs/tsconfig": "^5.0.39",
68
- "@xylabs/vitest-extended": "^4.5.1",
69
- "@xyo-network/account": "^3.9.23",
70
- "@xyo-network/archivist-memory": "^3.9.23",
71
- "@xyo-network/boundwitness-builder": "^3.9.23",
72
- "@xyo-network/hash": "^3.9.23",
73
- "@xyo-network/manifest": "^3.9.23",
74
- "@xyo-network/manifest-wrapper": "^3.9.23",
75
- "@xyo-network/node-memory": "^3.9.23",
76
- "@xyo-network/payload-builder": "^3.9.23",
58
+ "@stylistic/eslint-plugin": "^4.2.0",
59
+ "@types/supertest": "^6.0.3",
60
+ "@typescript-eslint/eslint-plugin": "^8.28.0",
61
+ "@typescript-eslint/parser": "^8.28.0",
62
+ "@xylabs/eslint-config-flat": "^6.1.13",
63
+ "@xylabs/express": "^4.7.13",
64
+ "@xylabs/forget": "^4.7.13",
65
+ "@xylabs/platform": "^4.7.13",
66
+ "@xylabs/ts-scripts-yarn3": "^6.1.13",
67
+ "@xylabs/tsconfig": "^6.1.13",
68
+ "@xylabs/vitest-extended": "^4.7.13",
69
+ "@xyo-network/account": "^3.10.6",
70
+ "@xyo-network/archivist-memory": "^3.10.6",
71
+ "@xyo-network/boundwitness-builder": "^3.10.6",
72
+ "@xyo-network/hash": "^3.10.6",
73
+ "@xyo-network/manifest": "^3.10.6",
74
+ "@xyo-network/manifest-wrapper": "^3.10.6",
75
+ "@xyo-network/node-memory": "^3.10.6",
76
+ "@xyo-network/payload-builder": "^3.10.6",
77
77
  "dotenv": "^16.4.7",
78
- "eslint": "^9.21.0",
79
- "eslint-import-resolver-typescript": "^3.8.3",
78
+ "eslint": "^9.23.0",
79
+ "eslint-import-resolver-typescript": "^4.2.7",
80
80
  "eslint-plugin-import": "^2.31.0",
81
81
  "eslint-plugin-sonarjs": "^3.0.2",
82
82
  "jsbi": "^4.3.0",
83
83
  "jsdom": "^26.0.0",
84
+ "knip": "^5.46.2",
84
85
  "lodash": "^4.17.21",
85
86
  "lodash-es": "^4.17.21",
86
87
  "nodemon": "^3.1.9",
87
88
  "reflect-metadata": "^0.2.2",
88
- "supertest": "^7.0.0",
89
+ "supertest": "^7.1.0",
89
90
  "tslib": "^2.8.1",
90
- "typedoc": "^0.27.9",
91
+ "typedoc": "^0.28.1",
91
92
  "typescript": "^5.8.2",
92
- "vitest": "^3.0.7"
93
+ "vitest": "^3.0.9"
93
94
  },
94
- "packageManager": "yarn@4.6.0",
95
+ "packageManager": "yarn@4.8.0",
95
96
  "volta": {
96
97
  "node": "22.3.0",
97
98
  "yarn": "1.22.22"
@@ -1,3 +0,0 @@
1
- export * from '@xyo-network/payload-plugins';
2
- export * from '@xyo-network/payloadset-plugins';
3
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAA;AAC5C,cAAc,iCAAiC,CAAA"}
@@ -1,3 +0,0 @@
1
- export * from '@xyo-network/payload-plugins';
2
- export * from '@xyo-network/payloadset-plugins';
3
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAA;AAC5C,cAAc,iCAAiC,CAAA"}
File without changes
File without changes