@sats-connect/core 0.15.0 → 0.16.0-0cb8d67
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/index.cjs +3687 -0
- package/dist/index.d.cts +13855 -0
- package/dist/index.d.mts +13254 -2209
- package/dist/index.mjs +3248 -3013
- package/package.json +24 -11
- package/dist/index.d.ts +0 -2810
- package/dist/index.js +0 -3367
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sats-connect/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.0-0cb8d67",
|
|
4
4
|
"main": "dist/index.mjs",
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"types": "dist/index.d.mts",
|
|
@@ -8,12 +8,13 @@
|
|
|
8
8
|
"dist"
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
|
-
"build": "
|
|
12
|
-
"build:watch": "
|
|
11
|
+
"build": "tsdown",
|
|
12
|
+
"build:watch": "tsdown --watch",
|
|
13
13
|
"check-types": "tsc --noEmit",
|
|
14
14
|
"check-format": "prettier --check .",
|
|
15
15
|
"format": "prettier --write .",
|
|
16
|
-
"
|
|
16
|
+
"lint": "eslint .",
|
|
17
|
+
"ci": "npm run check-types && npm run check-format && npm run lint && npm run build",
|
|
17
18
|
"prepare": "husky"
|
|
18
19
|
},
|
|
19
20
|
"lint-staged": {
|
|
@@ -25,21 +26,33 @@
|
|
|
25
26
|
]
|
|
26
27
|
},
|
|
27
28
|
"dependencies": {
|
|
28
|
-
"axios": "1.
|
|
29
|
+
"axios": "1.13.2",
|
|
29
30
|
"bitcoin-address-validation": "3.0.0",
|
|
30
31
|
"buffer": "6.0.3",
|
|
31
|
-
"jsontokens": "4.0.1"
|
|
32
|
+
"jsontokens": "4.0.1",
|
|
33
|
+
"ts-pattern": "5.9.0"
|
|
32
34
|
},
|
|
33
35
|
"devDependencies": {
|
|
36
|
+
"@eslint/js": "9.39.2",
|
|
37
|
+
"@typescript-eslint/eslint-plugin": "8.54.0",
|
|
38
|
+
"@typescript-eslint/parser": "8.54.0",
|
|
39
|
+
"eslint-config-prettier": "10.1.8",
|
|
40
|
+
"eslint-import-resolver-typescript": "4.4.4",
|
|
41
|
+
"eslint-plugin-import": "2.32.0",
|
|
42
|
+
"eslint-plugin-prettier": "5.5.5",
|
|
43
|
+
"eslint-plugin-unused-imports": "4.3.0",
|
|
44
|
+
"eslint": "9.39.2",
|
|
34
45
|
"husky": "9.1.7",
|
|
35
|
-
"lint-staged": "16.
|
|
36
|
-
"prettier": "3.
|
|
46
|
+
"lint-staged": "16.2.7",
|
|
47
|
+
"prettier-plugin-organize-imports": "4.3.0",
|
|
48
|
+
"prettier": "3.8.0",
|
|
37
49
|
"process": "0.11.10",
|
|
38
|
-
"rimraf": "6.
|
|
50
|
+
"rimraf": "6.1.2",
|
|
39
51
|
"stream-browserify": "3.0.0",
|
|
40
52
|
"ts-loader": "9.5.4",
|
|
41
|
-
"
|
|
42
|
-
"typescript": "
|
|
53
|
+
"tsdown": "0.19.0",
|
|
54
|
+
"typescript-eslint": "8.54.0",
|
|
55
|
+
"typescript": "5.9.3",
|
|
43
56
|
"util": "0.12.5",
|
|
44
57
|
"vm-browserify": "1.1.2"
|
|
45
58
|
},
|