@1money/protocol-ts-sdk 2.0.0 → 2.0.1
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/.claude/settings.local.json +17 -1
- package/es/api/index.js +32 -0
- package/es/client/core.d.ts +2 -4
- package/es/client/index.js +32 -0
- package/es/index.js +32 -0
- package/eslint.config.mjs +101 -0
- package/lib/api/index.js +42 -0
- package/lib/client/core.d.ts +2 -4
- package/lib/client/index.js +42 -0
- package/lib/index.js +42 -0
- package/package.json +25 -14
- package/umd/1money-protocol-ts-sdk.min.js +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@1money/protocol-ts-sdk",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "ts sdk for 1Money protocol network",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"test:all": "npm run test && npm run test:integration",
|
|
38
38
|
"lint": "npm run lint:prettier && npm run lint:es",
|
|
39
39
|
"lint:fix": "npm run lint:prettier_fix && npm run lint:es_fix",
|
|
40
|
-
"lint:es": "eslint src/
|
|
41
|
-
"lint:es_fix": "eslint src/ --
|
|
40
|
+
"lint:es": "eslint src/",
|
|
41
|
+
"lint:es_fix": "eslint src/ --fix",
|
|
42
42
|
"lint:prettier": "prettier --check src/",
|
|
43
43
|
"lint:prettier_fix": "prettier --write src/",
|
|
44
|
-
"lint:commit": "commitlint
|
|
44
|
+
"lint:commit": "commitlint --edit",
|
|
45
45
|
"new": "omni new",
|
|
46
46
|
"build": "omni build",
|
|
47
47
|
"build:remote": "cross-env RUN_ENV=remote omni build",
|
|
@@ -72,7 +72,8 @@
|
|
|
72
72
|
"@babel/preset-env": "~7.26.9",
|
|
73
73
|
"@babel/preset-typescript": "~7.26.0",
|
|
74
74
|
"@babel/runtime-corejs3": "~7.26.10",
|
|
75
|
-
"@commitlint/cli": "
|
|
75
|
+
"@commitlint/cli": "~20.5.0",
|
|
76
|
+
"@commitlint/config-conventional": "~20.5.0",
|
|
76
77
|
"@ethereumjs/rlp": "^10.0.0",
|
|
77
78
|
"@noble/secp256k1": "2.3.0",
|
|
78
79
|
"@omni-door/cli": "~3.2.2",
|
|
@@ -81,31 +82,31 @@
|
|
|
81
82
|
"@rollup/plugin-commonjs": "~28.0.3",
|
|
82
83
|
"@rollup/plugin-json": "~6.1.0",
|
|
83
84
|
"@rollup/plugin-node-resolve": "~16.0.1",
|
|
84
|
-
"@rollup/plugin-terser": "^0.
|
|
85
|
+
"@rollup/plugin-terser": "^1.0.0",
|
|
85
86
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
86
87
|
"@types/chai": "4.3.17",
|
|
87
88
|
"@types/mocha": "10.0.7",
|
|
88
89
|
"@types/node": "~18.19.39",
|
|
89
|
-
"
|
|
90
|
-
"@typescript-eslint/parser": "~8.30.0",
|
|
90
|
+
"typescript-eslint": "~8.57.1",
|
|
91
91
|
"axios": "~1.12.0",
|
|
92
92
|
"chai": "4.5.0",
|
|
93
93
|
"cross-env": "^7.0.3",
|
|
94
94
|
"del": "5.1.0",
|
|
95
95
|
"detect-port": "1.3.0",
|
|
96
96
|
"dotenv": "^16.5.0",
|
|
97
|
-
"eslint": "~
|
|
98
|
-
"eslint
|
|
99
|
-
"eslint-
|
|
97
|
+
"@eslint/js": "~9.23.0",
|
|
98
|
+
"eslint": "~9.23.0",
|
|
99
|
+
"eslint-config-prettier": "~10.1.8",
|
|
100
|
+
"eslint-plugin-prettier": "~5.5.5",
|
|
100
101
|
"husky": "9.1.7",
|
|
101
102
|
"ip": "1.1.5",
|
|
102
103
|
"lint-staged": "15.4.3",
|
|
103
|
-
"mocha": "
|
|
104
|
+
"mocha": "11.7.5",
|
|
104
105
|
"nyc": "17.0.0",
|
|
105
106
|
"prettier": "~3.5.0",
|
|
106
107
|
"prettier-eslint": "^16.3.0",
|
|
107
|
-
"puppeteer": "^24.
|
|
108
|
-
"rollup": "~4.
|
|
108
|
+
"puppeteer": "^24.40.0",
|
|
109
|
+
"rollup": "~4.60.0",
|
|
109
110
|
"rollup-plugin-polyfill-node": "^0.13.0",
|
|
110
111
|
"ts-loader": "9.5.1",
|
|
111
112
|
"ts-patch": "~3.2.1",
|
|
@@ -116,5 +117,15 @@
|
|
|
116
117
|
"typescript": "~5.8.3",
|
|
117
118
|
"typescript-transform-paths": "~3.5.5",
|
|
118
119
|
"viem": "^2.30.0"
|
|
120
|
+
},
|
|
121
|
+
"pnpm": {
|
|
122
|
+
"overrides": {
|
|
123
|
+
"minimatch@<3.1.4": "3.1.4",
|
|
124
|
+
"minimatch@>=5.0.0 <5.1.8": "5.1.8",
|
|
125
|
+
"minimatch@>=9.0.0 <9.0.7": "9.0.7",
|
|
126
|
+
"flatted@<=3.4.1": "3.4.2",
|
|
127
|
+
"serialize-javascript@<=7.0.2": "7.0.4",
|
|
128
|
+
"basic-ftp@<5.2.0": "5.2.0"
|
|
129
|
+
}
|
|
119
130
|
}
|
|
120
131
|
}
|