@xyo-network/plugins 2.99.4 → 2.99.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/dist/browser/index.cjs.map +1 -1
- package/dist/browser/{index.js → index.mjs} +1 -1
- package/dist/neutral/index.cjs.map +1 -1
- package/dist/{node/index.js → neutral/index.mjs} +1 -1
- package/dist/node/index.cjs.map +1 -1
- package/dist/{neutral/index.js → node/index.mjs} +1 -1
- package/eslint.config.mjs +37 -0
- package/package.json +27 -28
- package/eslint.config.flat.mjs +0 -99
- /package/dist/browser/{index.js.map → index.mjs.map} +0 -0
- /package/dist/neutral/{index.js.map → index.mjs.map} +0 -0
- /package/dist/node/{index.js.map → index.mjs.map} +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/payload-plugins'\nexport * from '@xyo-network/payloadset-plugins'\n"],"mappings":";;;;;;;;;;;;;;;;;AAAA
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/payload-plugins'\nexport * from '@xyo-network/payloadset-plugins'\n"],"mappings":";;;;;;;;;;;;;;;;;AAAA;;wBAAc,yCAAd;AACA,wBAAc,4CADd;","names":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/payload-plugins'\nexport * from '@xyo-network/payloadset-plugins'\n"],"mappings":";;;;;;;;;;;;;;;;;AAAA
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/payload-plugins'\nexport * from '@xyo-network/payloadset-plugins'\n"],"mappings":";;;;;;;;;;;;;;;;;AAAA;;wBAAc,yCAAd;AACA,wBAAc,4CADd;","names":[]}
|
package/dist/node/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/payload-plugins'\nexport * from '@xyo-network/payloadset-plugins'\n"],"mappings":";;;;;;;;;;;;;;;;;AAAA
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/payload-plugins'\nexport * from '@xyo-network/payloadset-plugins'\n"],"mappings":";;;;;;;;;;;;;;;;;AAAA;;wBAAc,yCAAd;AACA,wBAAc,4CADd;","names":[]}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
// eslint.config.mjs
|
|
2
|
+
|
|
3
|
+
import { config as xylabsConfig, rulesConfig } from '@xylabs/eslint-config-flat'
|
|
4
|
+
|
|
5
|
+
export default [
|
|
6
|
+
{
|
|
7
|
+
ignores: ['.yarn/**', 'jest.config.cjs', '**/dist/**', 'dist', 'build/**', 'node_modules/**'],
|
|
8
|
+
},
|
|
9
|
+
...xylabsConfig,
|
|
10
|
+
{
|
|
11
|
+
rules: {
|
|
12
|
+
'@typescript-eslint/no-unused-expressions': ['off'],
|
|
13
|
+
'no-restricted-imports': [
|
|
14
|
+
'warn',
|
|
15
|
+
{
|
|
16
|
+
paths: [
|
|
17
|
+
...rulesConfig.rules['no-restricted-imports'][1].paths,
|
|
18
|
+
'@types/node',
|
|
19
|
+
'@xyo-network/archivist',
|
|
20
|
+
'@xyo-network/bridge',
|
|
21
|
+
'@xyo-network/core',
|
|
22
|
+
'@xyo-network/diviner',
|
|
23
|
+
'@xyo-network/module',
|
|
24
|
+
'@xyo-network/modules',
|
|
25
|
+
'@xyo-network/node',
|
|
26
|
+
'@xyo-network/sdk',
|
|
27
|
+
'@xyo-network/plugins',
|
|
28
|
+
'@xyo-network/protocol',
|
|
29
|
+
'@xyo-network/sentinel',
|
|
30
|
+
'@xyo-network/witness',
|
|
31
|
+
'@xyo-network/core-payload-plugins',
|
|
32
|
+
],
|
|
33
|
+
},
|
|
34
|
+
],
|
|
35
|
+
},
|
|
36
|
+
},
|
|
37
|
+
]
|
package/package.json
CHANGED
|
@@ -13,33 +13,33 @@
|
|
|
13
13
|
"packages/**/*"
|
|
14
14
|
],
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@xyo-network/payload-plugins": "^2.99.
|
|
17
|
-
"@xyo-network/payloadset-plugins": "^2.99.
|
|
16
|
+
"@xyo-network/payload-plugins": "^2.99.5",
|
|
17
|
+
"@xyo-network/payloadset-plugins": "^2.99.5"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@babel/core": "^7.
|
|
21
|
-
"@babel/preset-env": "^7.
|
|
20
|
+
"@babel/core": "^7.25.2",
|
|
21
|
+
"@babel/preset-env": "^7.25.3",
|
|
22
22
|
"@babel/preset-typescript": "^7.24.7",
|
|
23
23
|
"@types/jest": "^29.5.12",
|
|
24
24
|
"@types/supertest": "^6.0.2",
|
|
25
|
-
"@xylabs/eslint-config": "^3.
|
|
26
|
-
"@xylabs/eslint-config-flat": "^3.
|
|
27
|
-
"@xylabs/forget": "^3.6.
|
|
28
|
-
"@xylabs/ts-scripts-yarn3": "^3.
|
|
29
|
-
"@xylabs/tsconfig": "^3.
|
|
30
|
-
"@xylabs/tsconfig-dom-jest": "^3.
|
|
31
|
-
"@xyo-network/account": "^2.
|
|
32
|
-
"@xyo-network/archivist-memory": "^2.
|
|
33
|
-
"@xyo-network/boundwitness-builder": "^2.
|
|
34
|
-
"@xyo-network/hash": "^2.
|
|
35
|
-
"@xyo-network/manifest": "^2.
|
|
36
|
-
"@xyo-network/manifest-wrapper": "^2.
|
|
37
|
-
"@xyo-network/node-memory": "^2.
|
|
38
|
-
"@xyo-network/payload-builder": "^2.
|
|
25
|
+
"@xylabs/eslint-config": "^3.15.13",
|
|
26
|
+
"@xylabs/eslint-config-flat": "^3.15.13",
|
|
27
|
+
"@xylabs/forget": "^3.6.8",
|
|
28
|
+
"@xylabs/ts-scripts-yarn3": "^3.15.13",
|
|
29
|
+
"@xylabs/tsconfig": "^3.15.13",
|
|
30
|
+
"@xylabs/tsconfig-dom-jest": "^3.15.13",
|
|
31
|
+
"@xyo-network/account": "^2.111.2",
|
|
32
|
+
"@xyo-network/archivist-memory": "^2.111.2",
|
|
33
|
+
"@xyo-network/boundwitness-builder": "^2.111.2",
|
|
34
|
+
"@xyo-network/hash": "^2.111.2",
|
|
35
|
+
"@xyo-network/manifest": "^2.111.2",
|
|
36
|
+
"@xyo-network/manifest-wrapper": "^2.111.2",
|
|
37
|
+
"@xyo-network/node-memory": "^2.111.2",
|
|
38
|
+
"@xyo-network/payload-builder": "^2.111.2",
|
|
39
39
|
"babel-jest": "^29.7.0",
|
|
40
40
|
"dotenv": "^16.4.5",
|
|
41
|
-
"eslint": "^9.
|
|
42
|
-
"ethers": "^6.13.
|
|
41
|
+
"eslint": "^9.8.0",
|
|
42
|
+
"ethers": "^6.13.2",
|
|
43
43
|
"jest": "^29.7.0",
|
|
44
44
|
"jest-docblock": "^29.7.0",
|
|
45
45
|
"jest-environment-jsdom": "^29.7.0",
|
|
@@ -50,14 +50,13 @@
|
|
|
50
50
|
"nodemon": "^3.1.4",
|
|
51
51
|
"reflect-metadata": "^0.2.2",
|
|
52
52
|
"supertest": "^7.0.0",
|
|
53
|
-
"ts-jest": "^29.2.
|
|
53
|
+
"ts-jest": "^29.2.4",
|
|
54
54
|
"ts-node": "^10.9.2",
|
|
55
|
-
"typedoc": "^0.26.
|
|
56
|
-
"typescript": "^5.5.
|
|
55
|
+
"typedoc": "^0.26.5",
|
|
56
|
+
"typescript": "^5.5.4"
|
|
57
57
|
},
|
|
58
58
|
"resolutions": {
|
|
59
59
|
"axios": "^1",
|
|
60
|
-
"bn.js": "^5",
|
|
61
60
|
"eslint": "^8",
|
|
62
61
|
"ethers": "^6",
|
|
63
62
|
"mapbox-gl": "^2",
|
|
@@ -74,7 +73,7 @@
|
|
|
74
73
|
},
|
|
75
74
|
"import": {
|
|
76
75
|
"types": "./dist/browser/index.d.mts",
|
|
77
|
-
"default": "./dist/browser/index.
|
|
76
|
+
"default": "./dist/browser/index.mjs"
|
|
78
77
|
}
|
|
79
78
|
},
|
|
80
79
|
"node": {
|
|
@@ -84,14 +83,14 @@
|
|
|
84
83
|
},
|
|
85
84
|
"import": {
|
|
86
85
|
"types": "./dist/node/index.d.mts",
|
|
87
|
-
"default": "./dist/node/index.
|
|
86
|
+
"default": "./dist/node/index.mjs"
|
|
88
87
|
}
|
|
89
88
|
}
|
|
90
89
|
},
|
|
91
90
|
"./package.json": "./package.json"
|
|
92
91
|
},
|
|
93
92
|
"main": "dist/node/index.cjs",
|
|
94
|
-
"module": "dist/node/index.
|
|
93
|
+
"module": "dist/node/index.mjs",
|
|
95
94
|
"types": "dist/node/index.d.ts",
|
|
96
95
|
"homepage": "https://xyo.network",
|
|
97
96
|
"license": "LGPL-3.0-only",
|
|
@@ -113,7 +112,7 @@
|
|
|
113
112
|
"build-typedoc-site": "typedoc"
|
|
114
113
|
},
|
|
115
114
|
"sideEffects": false,
|
|
116
|
-
"version": "2.99.
|
|
115
|
+
"version": "2.99.5",
|
|
117
116
|
"packageManager": "yarn@4.3.1",
|
|
118
117
|
"volta": {
|
|
119
118
|
"node": "22.3.0",
|
package/eslint.config.flat.mjs
DELETED
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
// eslint.config.mjs
|
|
2
|
-
|
|
3
|
-
import { typescriptConfig, importConfig, unicornConfig, prettierConfig, rulesConfig, workspacesConfig } from '@xylabs/eslint-config-flat'
|
|
4
|
-
import tsParser from '@typescript-eslint/parser'
|
|
5
|
-
|
|
6
|
-
export default [
|
|
7
|
-
{
|
|
8
|
-
ignores: ['.yarn', '.yarn/**', '**/dist/**', 'dist/**', 'build/**', 'node_modules/**'],
|
|
9
|
-
},
|
|
10
|
-
workspacesConfig,
|
|
11
|
-
typescriptConfig,
|
|
12
|
-
unicornConfig,
|
|
13
|
-
prettierConfig,
|
|
14
|
-
rulesConfig,
|
|
15
|
-
{
|
|
16
|
-
...importConfig,
|
|
17
|
-
rules: {
|
|
18
|
-
...importConfig.rules,
|
|
19
|
-
'import/no-deprecated': ['off'],
|
|
20
|
-
'import/no-internal-modules': ['off'],
|
|
21
|
-
},
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
rules: {
|
|
25
|
-
'no-unused-disable-directive': ['off'],
|
|
26
|
-
complexity: ['error', 18],
|
|
27
|
-
'max-depth': ['error', 6],
|
|
28
|
-
'max-lines': [
|
|
29
|
-
'error',
|
|
30
|
-
{
|
|
31
|
-
max: 512,
|
|
32
|
-
skipBlankLines: true,
|
|
33
|
-
},
|
|
34
|
-
],
|
|
35
|
-
'max-nested-callbacks': ['error', 6],
|
|
36
|
-
'max-statements': ['error', 32],
|
|
37
|
-
'no-restricted-imports': [
|
|
38
|
-
'warn',
|
|
39
|
-
{
|
|
40
|
-
paths: [
|
|
41
|
-
'lodash',
|
|
42
|
-
'react-player',
|
|
43
|
-
'filepond',
|
|
44
|
-
'aos',
|
|
45
|
-
'react-icons',
|
|
46
|
-
'.',
|
|
47
|
-
'..',
|
|
48
|
-
'../..',
|
|
49
|
-
'../../..',
|
|
50
|
-
'../../../..',
|
|
51
|
-
'../../../../..',
|
|
52
|
-
'../../../../../..',
|
|
53
|
-
'../../../../../../..',
|
|
54
|
-
],
|
|
55
|
-
},
|
|
56
|
-
],
|
|
57
|
-
//'no-secrets/no-secrets': ['off'],
|
|
58
|
-
'no-tabs': ['error'],
|
|
59
|
-
'no-unused-vars': 'off',
|
|
60
|
-
'no-useless-escape': 'off',
|
|
61
|
-
quotes: [2, 'single', 'avoid-escape'],
|
|
62
|
-
'require-await': 'error',
|
|
63
|
-
semi: ['warn', 'never'],
|
|
64
|
-
'no-restricted-imports': [
|
|
65
|
-
'warn',
|
|
66
|
-
{
|
|
67
|
-
paths: [
|
|
68
|
-
'@types/node',
|
|
69
|
-
'@xyo-network/archivist',
|
|
70
|
-
'@xyo-network/bridge',
|
|
71
|
-
'@xyo-network/core',
|
|
72
|
-
'@xyo-network/diviner',
|
|
73
|
-
'@xyo-network/module',
|
|
74
|
-
'@xyo-network/modules',
|
|
75
|
-
'@xyo-network/node',
|
|
76
|
-
'@xyo-network/sdk',
|
|
77
|
-
'@xyo-network/plugins',
|
|
78
|
-
'@xyo-network/protocol',
|
|
79
|
-
'@xyo-network/sentinel',
|
|
80
|
-
'@xyo-network/witness',
|
|
81
|
-
'@xyo-network/core-payload-plugins',
|
|
82
|
-
'react-player',
|
|
83
|
-
'filepond',
|
|
84
|
-
'aos',
|
|
85
|
-
'react-icons',
|
|
86
|
-
'.',
|
|
87
|
-
'..',
|
|
88
|
-
'../..',
|
|
89
|
-
'../../..',
|
|
90
|
-
'../../../..',
|
|
91
|
-
'../../../../..',
|
|
92
|
-
'../../../../../..',
|
|
93
|
-
'../../../../../../..',
|
|
94
|
-
],
|
|
95
|
-
},
|
|
96
|
-
],
|
|
97
|
-
},
|
|
98
|
-
},
|
|
99
|
-
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|