@gibme/base58 20.0.1 → 22.0.0
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/README.md +54 -8
- package/dist/base58.min.js +1 -1
- package/dist/base58.min.js.map +1 -1
- package/package.json +17 -19
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gibme/base58",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "22.0.0",
|
|
4
4
|
"description": "Base58 Library",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"build:docs": "./node_modules/.bin/typedoc",
|
|
14
14
|
"build:typescript": "./node_modules/.bin/tsc",
|
|
15
15
|
"build:webpack": "./node_modules/.bin/auto-pack",
|
|
16
|
-
"test": "yarn test:style && yarn test:typecheck && yarn test:
|
|
16
|
+
"test": "yarn test:style && yarn test:typecheck && yarn test:units",
|
|
17
17
|
"test:typecheck": "./node_modules/.bin/tsc --noEmit",
|
|
18
18
|
"test:style": "yarn style",
|
|
19
|
-
"test:
|
|
19
|
+
"test:units": "node --import tsx --test --test-timeout 120000 test/test.ts",
|
|
20
20
|
"style": "./node_modules/.bin/eslint src/**/*.ts test/**/*.ts",
|
|
21
21
|
"fix-style": "./node_modules/.bin/eslint --fix src/**/*.ts test/**/*.ts",
|
|
22
22
|
"fix:style": "yarn fix-style",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"homepage": "https://gibme-npm.github.io/base58/",
|
|
33
33
|
"engines": {
|
|
34
|
-
"node": ">=
|
|
34
|
+
"node": ">=22"
|
|
35
35
|
},
|
|
36
36
|
"engineStrict": true,
|
|
37
37
|
"author": {
|
|
@@ -45,27 +45,25 @@
|
|
|
45
45
|
"filename": "[name].min.js"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@eslint/eslintrc": "^3.3.
|
|
49
|
-
"@eslint/js": "^
|
|
50
|
-
"@gibme/auto-pack": "^
|
|
51
|
-
"@types/
|
|
52
|
-
"@
|
|
53
|
-
"@typescript-eslint/
|
|
54
|
-
"
|
|
55
|
-
"eslint": "^9.39.1",
|
|
48
|
+
"@eslint/eslintrc": "^3.3.5",
|
|
49
|
+
"@eslint/js": "^10.0.1",
|
|
50
|
+
"@gibme/auto-pack": "^22.0.0",
|
|
51
|
+
"@types/node": "^25.5.2",
|
|
52
|
+
"@typescript-eslint/eslint-plugin": "^8.58.0",
|
|
53
|
+
"@typescript-eslint/parser": "^8.58.0",
|
|
54
|
+
"eslint": "^10.1.0",
|
|
56
55
|
"eslint-config-standard": "^17.1.0",
|
|
57
56
|
"eslint-plugin-import": "^2.32.0",
|
|
58
|
-
"eslint-plugin-n": "^17.
|
|
57
|
+
"eslint-plugin-n": "^17.24.0",
|
|
59
58
|
"eslint-plugin-node": "^11.1.0",
|
|
60
59
|
"eslint-plugin-promise": "^7.2.1",
|
|
61
|
-
"globals": "^
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"typescript": "^5.9.3"
|
|
60
|
+
"globals": "^17.4.0",
|
|
61
|
+
"tsx": "^4.19.4",
|
|
62
|
+
"typedoc": "^0.28.18",
|
|
63
|
+
"typescript": "^6.0.2"
|
|
66
64
|
},
|
|
67
65
|
"dependencies": {
|
|
68
|
-
"@gibme/bytepack": "^
|
|
66
|
+
"@gibme/bytepack": "^22.0.1",
|
|
69
67
|
"buffer": "^6.0.3"
|
|
70
68
|
}
|
|
71
69
|
}
|