@xyo-network/sdk-js 3.3.0 → 3.3.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/package.json +16 -16
- package/jestSetup/globalSetup.ts +0 -20
- package/jestSetup/globalTeardown.ts +0 -12
- package/jestSetup/setupFiles.ts +0 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/sdk-js",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.2",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -70,29 +70,29 @@
|
|
|
70
70
|
"quick-lru": "^5"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@xyo-network/core-payload-plugins": "^3.3.
|
|
74
|
-
"@xyo-network/manifest": "^3.3.
|
|
75
|
-
"@xyo-network/modules": "^3.3.
|
|
76
|
-
"@xyo-network/protocol": "^3.3.
|
|
77
|
-
"@xyo-network/sdk-utils": "^3.3.
|
|
78
|
-
"@xyo-network/shared": "^3.3.
|
|
73
|
+
"@xyo-network/core-payload-plugins": "^3.3.2",
|
|
74
|
+
"@xyo-network/manifest": "^3.3.2",
|
|
75
|
+
"@xyo-network/modules": "^3.3.2",
|
|
76
|
+
"@xyo-network/protocol": "^3.3.2",
|
|
77
|
+
"@xyo-network/sdk-utils": "^3.3.2",
|
|
78
|
+
"@xyo-network/shared": "^3.3.2"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"@babel/core": "^7.25.
|
|
81
|
+
"@babel/core": "^7.25.9",
|
|
82
82
|
"@jest/globals": "^29.7.0",
|
|
83
83
|
"@stylistic/eslint-plugin": "^2.9.0",
|
|
84
84
|
"@types/jest": "^29.5.13",
|
|
85
85
|
"@types/supertest": "^6.0.2",
|
|
86
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
87
|
-
"@typescript-eslint/parser": "^8.
|
|
88
|
-
"@xylabs/eslint-config-flat": "^4.2.
|
|
89
|
-
"@xylabs/forget": "^4.
|
|
90
|
-
"@xylabs/ts-scripts-yarn3": "^4.2.
|
|
91
|
-
"@xylabs/tsconfig": "^4.2.
|
|
86
|
+
"@typescript-eslint/eslint-plugin": "^8.11.0",
|
|
87
|
+
"@typescript-eslint/parser": "^8.11.0",
|
|
88
|
+
"@xylabs/eslint-config-flat": "^4.2.3",
|
|
89
|
+
"@xylabs/forget": "^4.3.2",
|
|
90
|
+
"@xylabs/ts-scripts-yarn3": "^4.2.3",
|
|
91
|
+
"@xylabs/tsconfig": "^4.2.3",
|
|
92
92
|
"@xylabs/tsconfig-dom-jest": "^4.1.0",
|
|
93
93
|
"babel-jest": "^29.7.0",
|
|
94
94
|
"dotenv": "^16.4.5",
|
|
95
|
-
"eslint": "^9.
|
|
95
|
+
"eslint": "^9.13.0",
|
|
96
96
|
"eslint-import-resolver-typescript": "^3.6.3",
|
|
97
97
|
"jest": "^29.7.0",
|
|
98
98
|
"jest-docblock": "^29.7.0",
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
"typescript": "^5.6.3",
|
|
113
113
|
"vitest": "^2.1.3"
|
|
114
114
|
},
|
|
115
|
-
"packageManager": "yarn@4.5.
|
|
115
|
+
"packageManager": "yarn@4.5.1",
|
|
116
116
|
"volta": {
|
|
117
117
|
"node": "22.3.0",
|
|
118
118
|
"yarn": "1.22.22"
|
package/jestSetup/globalSetup.ts
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { config } from 'dotenv'
|
|
2
|
-
config()
|
|
3
|
-
import '@jest/globals'
|
|
4
|
-
|
|
5
|
-
import type { Config } from 'jest'
|
|
6
|
-
import type { SuperTest, Test } from 'supertest'
|
|
7
|
-
|
|
8
|
-
// Augment global scope with shared variables (must be var)
|
|
9
|
-
declare global {
|
|
10
|
-
var req: SuperTest<Test>
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
/**
|
|
14
|
-
* Jest global setup method runs before any tests are run
|
|
15
|
-
* https://jestjs.io/docs/configuration#globalsetup-string
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
|
-
const setup = async (_globalConfig: Config, _projectConfig: Config) => {}
|
|
19
|
-
|
|
20
|
-
module.exports = setup
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { config } from 'dotenv'
|
|
2
|
-
config()
|
|
3
|
-
import type { Config } from 'jest'
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* Jest global teardown method runs after all tests are run
|
|
7
|
-
* https://jestjs.io/docs/configuration#globalteardown-string
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
const teardown = async (_globalConfig: Config, _projectConfig: Config) => {}
|
|
11
|
-
|
|
12
|
-
module.exports = teardown
|
package/jestSetup/setupFiles.ts
DELETED