@xyo-network/plugins 3.5.1 → 3.5.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
@@ -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', 'packages'] },
11
+ { ignores: ['.yarn', 'dist', '**/dist/**', 'build', '**/build/**', 'node_modules/**', 'public', 'storybook-static', 'eslint.config.mjs'] },
12
12
  unicornConfig,
13
13
  workspacesConfig,
14
14
  rulesConfig,
package/knip.config.ts ADDED
@@ -0,0 +1,44 @@
1
+ import type { KnipConfig } from 'knip'
2
+
3
+ const entry = ['src/index.ts*', 'src/index-*.ts*', '*.ts', '*.mjs', 'scripts/**/*.*', 'bin/*', 'src/**/*.stories.ts*', 'src/**/*.spec.ts']
4
+ const project = ['src/**/*.ts*', '*.ts*']
5
+
6
+ const config: KnipConfig = {
7
+ entry: [
8
+ 'src/index.ts*',
9
+ 'src/index-*.ts*',
10
+ '*.ts',
11
+ '*.mjs',
12
+ 'scripts/**/*.*',
13
+ 'bin/*',
14
+ 'src/**/*.stories.ts*',
15
+ 'src/**/*.spec.ts',
16
+ ],
17
+ project: ['src/**/*.ts*', '*.ts*'],
18
+ ignoreDependencies: ['@xylabs/ts-scripts-yarn3', 'tslib'],
19
+ workspaces: {
20
+ '.': {
21
+ entry: [...entry, 'src/**/*.ts', './storybook/**/*.ts', 'vite.config.ts'],
22
+ project,
23
+ ignoreDependencies: [
24
+ '@typescript-eslint/eslint-plugin',
25
+ '@typescript-eslint/parser',
26
+ 'eslint',
27
+ 'eslint-import-resolver-typescript',
28
+ ],
29
+ },
30
+ 'packages/*': { entry, project },
31
+ 'packages/*/packages/*': { entry, project },
32
+ 'packages/*/packages/packages/*': { entry, project },
33
+ 'packages/*/packages/*/packages/*': { entry, project },
34
+ 'packages/*/packages/*/packages/*/packages/*': { entry, project },
35
+ },
36
+ typescript: {
37
+ config: [
38
+ 'tsconfig.json',
39
+ 'packages/**/*/tsconfig.json',
40
+ ],
41
+ },
42
+ }
43
+
44
+ export default config
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/plugins",
3
- "version": "3.5.1",
3
+ "version": "3.5.2",
4
4
  "description": "Typescript/Javascript Plugins for XYO Platform",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -48,42 +48,40 @@
48
48
  "quick-lru": "^5"
49
49
  },
50
50
  "dependencies": {
51
- "@xyo-network/payload-plugins": "^3.5.1",
52
- "@xyo-network/payloadset-plugins": "^3.5.1"
51
+ "@xyo-network/payload-plugins": "^3.5.2",
52
+ "@xyo-network/payloadset-plugins": "^3.5.2"
53
53
  },
54
54
  "devDependencies": {
55
- "@babel/core": "^7.26.10",
56
55
  "@ethersproject/address": "^5.8.0",
57
56
  "@ethersproject/bignumber": "^5.8.0",
58
57
  "@stylistic/eslint-plugin": "^4.2.0",
59
58
  "@types/supertest": "^6.0.3",
60
- "@typescript-eslint/eslint-plugin": "^8.29.1",
61
- "@typescript-eslint/parser": "^8.29.1",
62
- "@xylabs/eslint-config-flat": "^6.2.1",
63
- "@xylabs/express": "^4.8.0",
64
- "@xylabs/forget": "^4.8.0",
65
- "@xylabs/platform": "^4.8.0",
66
- "@xylabs/ts-scripts-yarn3": "^6.2.1",
67
- "@xylabs/tsconfig": "^6.2.1",
68
- "@xylabs/vitest-extended": "^4.8.0",
69
- "@xyo-network/account": "^3.12.0",
70
- "@xyo-network/archivist-memory": "^3.12.0",
71
- "@xyo-network/boundwitness-builder": "^3.12.0",
72
- "@xyo-network/hash": "^3.12.0",
73
- "@xyo-network/manifest": "^3.12.0",
74
- "@xyo-network/manifest-wrapper": "^3.12.0",
75
- "@xyo-network/node-memory": "^3.12.0",
76
- "@xyo-network/payload-builder": "^3.12.0",
77
- "dotenv": "^16.4.7",
78
- "eslint": "^9.24.0",
59
+ "@typescript-eslint/eslint-plugin": "^8.30.1",
60
+ "@typescript-eslint/parser": "^8.30.1",
61
+ "@vitest/coverage-v8": "^3.1.1",
62
+ "@xylabs/eslint-config-flat": "^6.3.1",
63
+ "@xylabs/express": "^4.8.7",
64
+ "@xylabs/forget": "^4.8.7",
65
+ "@xylabs/platform": "^4.8.7",
66
+ "@xylabs/ts-scripts-yarn3": "^6.3.1",
67
+ "@xylabs/tsconfig": "^6.3.1",
68
+ "@xylabs/vitest-extended": "^4.8.7",
69
+ "@xyo-network/account": "^3.13.0",
70
+ "@xyo-network/archivist-memory": "^3.13.0",
71
+ "@xyo-network/boundwitness-builder": "^3.13.0",
72
+ "@xyo-network/hash": "^3.13.0",
73
+ "@xyo-network/manifest": "^3.13.0",
74
+ "@xyo-network/manifest-wrapper": "^3.13.0",
75
+ "@xyo-network/node-memory": "^3.13.0",
76
+ "@xyo-network/payload-builder": "^3.13.0",
77
+ "dotenv": "^16.5.0",
78
+ "eslint": "^9.25.0",
79
79
  "eslint-import-resolver-typescript": "^4.3.2",
80
80
  "eslint-plugin-import": "^2.31.0",
81
81
  "eslint-plugin-sonarjs": "^3.0.2",
82
82
  "jsbi": "^4.3.2",
83
- "jsdom": "^26.0.0",
84
- "knip": "^5.47.0",
85
- "lodash": "^4.17.21",
86
- "lodash-es": "^4.17.21",
83
+ "jsdom": "^26.1.0",
84
+ "knip": "^5.50.5",
87
85
  "nodemon": "^3.1.9",
88
86
  "reflect-metadata": "^0.2.2",
89
87
  "supertest": "^7.1.0",
@@ -92,9 +90,9 @@
92
90
  "typescript": "^5.8.3",
93
91
  "vitest": "^3.1.1"
94
92
  },
95
- "packageManager": "yarn@4.8.1",
93
+ "packageManager": "yarn@4.9.1",
96
94
  "volta": {
97
- "node": "22.3.0",
95
+ "node": "22.14.0",
98
96
  "yarn": "1.22.22"
99
97
  },
100
98
  "publishConfig": {