@ctrl/ts-base32 2.1.3 → 3.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +8 -9
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # ts-base32 [![npm](https://badgen.net/npm/v/@ctrl/ts-base32)](https://www.npmjs.com/package/@ctrl/ts-base32) [![CircleCI](https://badgen.net/circleci/github/scttcper/ts-base32)](https://circleci.com/gh/scttcper/ts-base32) [![coverage](https://badgen.net/codecov/c/github/scttcper/ts-base32)](https://codecov.io/gh/scttcper/ts-base32) [![bundlesize](https://badgen.net/bundlephobia/min/@ctrl/ts-base32)](https://bundlephobia.com/result?p=@ctrl/ts-base32)
1
+ # ts-base32 [![npm](https://badgen.net/npm/v/@ctrl/ts-base32)](https://www.npmjs.com/package/@ctrl/ts-base32) [![coverage](https://badgen.net/codecov/c/github/scttcper/ts-base32)](https://codecov.io/gh/scttcper/ts-base32) [![bundlesize](https://badgen.net/bundlephobia/min/@ctrl/ts-base32)](https://bundlephobia.com/result?p=@ctrl/ts-base32)
2
2
 
3
3
  Base32 encode and decode in typescript exported as both commonjs and tree shakeable modules. Support for RFC4648, RFC4648_HEX, and CROCKFORD base32 encoding. Mostly directly taken from LinusU's packages.
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctrl/ts-base32",
3
- "version": "2.1.3",
3
+ "version": "3.0.0",
4
4
  "description": "Base32 encoder/decoder with support for multiple variants",
5
5
  "author": "Scott Cooper <scttcper@gmail.com>",
6
6
  "license": "MIT",
@@ -32,14 +32,13 @@
32
32
  "test:ci": "vitest run --coverage --reporter=junit --outputFile=./junit.xml"
33
33
  },
34
34
  "devDependencies": {
35
- "@ctrl/eslint-config": "3.7.0",
36
- "@sindresorhus/tsconfig": "3.0.1",
37
- "@types/node": "20.1.0",
38
- "@vitest/coverage-c8": "0.31.0",
35
+ "@ctrl/eslint-config": "4.0.6",
36
+ "@sindresorhus/tsconfig": "4.0.0",
37
+ "@types/node": "20.6.0",
38
+ "@vitest/coverage-v8": "0.34.4",
39
39
  "buffer": "6.0.3",
40
- "c8": "7.13.0",
41
- "typescript": "5.0.4",
42
- "vitest": "0.31.0"
40
+ "typescript": "5.2.2",
41
+ "vitest": "0.34.4"
43
42
  },
44
43
  "workspaces": [
45
44
  "demo"
@@ -54,6 +53,6 @@
54
53
  ]
55
54
  },
56
55
  "engines": {
57
- "node": ">=14.16"
56
+ "node": ">=18"
58
57
  }
59
58
  }