@xyo-network/plugins 3.4.2 → 3.4.4
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/dist/{browser → types}/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -0
- package/eslint.config.mjs +12 -35
- package/package.json +30 -30
- package/dist/neutral/index.d.ts +0 -2
- package/dist/node/index.d.ts +0 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAA;AAC5C,cAAc,iCAAiC,CAAA"}
|
package/eslint.config.mjs
CHANGED
|
@@ -1,29 +1,24 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import { typescriptConfig,
|
|
1
|
+
import {
|
|
2
|
+
typescriptConfig,
|
|
4
3
|
unicornConfig,
|
|
5
4
|
workspacesConfig,
|
|
6
5
|
rulesConfig,
|
|
7
6
|
sonarConfig,
|
|
8
|
-
importConfig
|
|
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
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
...typescriptConfig.rules,
|
|
22
|
-
'@typescript-eslint/consistent-type-imports': ['warn'],
|
|
23
|
-
},
|
|
24
|
-
},
|
|
15
|
+
typescriptConfig,
|
|
16
|
+
importConfig,
|
|
17
|
+
sonarConfig,
|
|
25
18
|
{
|
|
26
19
|
rules: {
|
|
20
|
+
'sonarjs/prefer-single-boolean-return': ['off'],
|
|
21
|
+
'import-x/no-unresolved': ['off'],
|
|
27
22
|
'no-restricted-imports': [
|
|
28
23
|
'warn',
|
|
29
24
|
{
|
|
@@ -48,24 +43,6 @@ export default [
|
|
|
48
43
|
],
|
|
49
44
|
},
|
|
50
45
|
},
|
|
51
|
-
{
|
|
52
|
-
...importConfig,
|
|
53
|
-
rules: {
|
|
54
|
-
...importConfig.rules,
|
|
55
|
-
'import-x/no-cycle': ['warn', { maxDepth: 5 }],
|
|
56
|
-
},
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
...sonarConfig,
|
|
60
|
-
rules: {
|
|
61
|
-
...sonarConfig.rules,
|
|
62
|
-
'sonarjs/deprecation': ['warn'],
|
|
63
|
-
'sonarjs/no-empty-test-file': ['off'],
|
|
64
|
-
'sonarjs/no-commented-code': ['off'],
|
|
65
|
-
'sonarjs/todo-tag': ['off'],
|
|
66
|
-
|
|
67
|
-
//unicorn handles this
|
|
68
|
-
'sonarjs/no-undefined-argument': ['off'],
|
|
69
|
-
},
|
|
70
|
-
},
|
|
71
46
|
]
|
|
47
|
+
|
|
48
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/plugins",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.4",
|
|
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/
|
|
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/
|
|
30
|
+
"types": "dist/types/index.d.ts",
|
|
31
31
|
"workspaces": [
|
|
32
32
|
"packages/**/*"
|
|
33
33
|
],
|
|
@@ -48,35 +48,35 @@
|
|
|
48
48
|
"quick-lru": "^5"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@xyo-network/payload-plugins": "^3.4.
|
|
52
|
-
"@xyo-network/payloadset-plugins": "^3.4.
|
|
51
|
+
"@xyo-network/payload-plugins": "^3.4.4",
|
|
52
|
+
"@xyo-network/payloadset-plugins": "^3.4.4"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@babel/core": "^7.26.
|
|
56
|
-
"@ethersproject/address": "^5.
|
|
57
|
-
"@ethersproject/bignumber": "^5.
|
|
58
|
-
"@stylistic/eslint-plugin": "^4.0
|
|
55
|
+
"@babel/core": "^7.26.10",
|
|
56
|
+
"@ethersproject/address": "^5.8.0",
|
|
57
|
+
"@ethersproject/bignumber": "^5.8.0",
|
|
58
|
+
"@stylistic/eslint-plugin": "^4.2.0",
|
|
59
59
|
"@types/supertest": "^6.0.2",
|
|
60
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
61
|
-
"@typescript-eslint/parser": "^8.
|
|
62
|
-
"@xylabs/eslint-config-flat": "^
|
|
63
|
-
"@xylabs/forget": "^4.
|
|
64
|
-
"@xylabs/platform": "^4.
|
|
60
|
+
"@typescript-eslint/eslint-plugin": "^8.26.1",
|
|
61
|
+
"@typescript-eslint/parser": "^8.26.1",
|
|
62
|
+
"@xylabs/eslint-config-flat": "^6.0.5",
|
|
63
|
+
"@xylabs/forget": "^4.6.0",
|
|
64
|
+
"@xylabs/platform": "^4.6.0",
|
|
65
65
|
"@xylabs/sdk-api-express-ecs": "^2.1.0",
|
|
66
|
-
"@xylabs/ts-scripts-yarn3": "^
|
|
67
|
-
"@xylabs/tsconfig": "^
|
|
68
|
-
"@xylabs/vitest-extended": "^4.
|
|
69
|
-
"@xyo-network/account": "^3.9.
|
|
70
|
-
"@xyo-network/archivist-memory": "^3.9.
|
|
71
|
-
"@xyo-network/boundwitness-builder": "^3.9.
|
|
72
|
-
"@xyo-network/hash": "^3.9.
|
|
73
|
-
"@xyo-network/manifest": "^3.9.
|
|
74
|
-
"@xyo-network/manifest-wrapper": "^3.9.
|
|
75
|
-
"@xyo-network/node-memory": "^3.9.
|
|
76
|
-
"@xyo-network/payload-builder": "^3.9.
|
|
66
|
+
"@xylabs/ts-scripts-yarn3": "^6.0.5",
|
|
67
|
+
"@xylabs/tsconfig": "^6.0.5",
|
|
68
|
+
"@xylabs/vitest-extended": "^4.6.0",
|
|
69
|
+
"@xyo-network/account": "^3.9.36",
|
|
70
|
+
"@xyo-network/archivist-memory": "^3.9.36",
|
|
71
|
+
"@xyo-network/boundwitness-builder": "^3.9.36",
|
|
72
|
+
"@xyo-network/hash": "^3.9.36",
|
|
73
|
+
"@xyo-network/manifest": "^3.9.36",
|
|
74
|
+
"@xyo-network/manifest-wrapper": "^3.9.36",
|
|
75
|
+
"@xyo-network/node-memory": "^3.9.36",
|
|
76
|
+
"@xyo-network/payload-builder": "^3.9.36",
|
|
77
77
|
"dotenv": "^16.4.7",
|
|
78
|
-
"eslint": "^9.
|
|
79
|
-
"eslint-import-resolver-typescript": "^3.8.
|
|
78
|
+
"eslint": "^9.22.0",
|
|
79
|
+
"eslint-import-resolver-typescript": "^3.8.5",
|
|
80
80
|
"eslint-plugin-import": "^2.31.0",
|
|
81
81
|
"eslint-plugin-sonarjs": "^3.0.2",
|
|
82
82
|
"jsbi": "^4.3.0",
|
|
@@ -87,9 +87,9 @@
|
|
|
87
87
|
"reflect-metadata": "^0.2.2",
|
|
88
88
|
"supertest": "^7.0.0",
|
|
89
89
|
"tslib": "^2.8.1",
|
|
90
|
-
"typedoc": "^0.27.
|
|
91
|
-
"typescript": "^5.
|
|
92
|
-
"vitest": "^3.0.
|
|
90
|
+
"typedoc": "^0.27.9",
|
|
91
|
+
"typescript": "^5.8.2",
|
|
92
|
+
"vitest": "^3.0.8"
|
|
93
93
|
},
|
|
94
94
|
"packageManager": "yarn@4.6.0",
|
|
95
95
|
"volta": {
|
package/dist/neutral/index.d.ts
DELETED
package/dist/node/index.d.ts
DELETED