@ctrl/ts-base32 4.1.0 → 4.2.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 (1) hide show
  1. package/package.json +33 -15
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctrl/ts-base32",
3
- "version": "4.1.0",
3
+ "version": "4.2.0",
4
4
  "description": "Base32 encoder/decoder with support for multiple variants",
5
5
  "author": "Scott Cooper <scttcper@gmail.com>",
6
6
  "license": "MIT",
@@ -26,12 +26,8 @@
26
26
  "scripts": {
27
27
  "demo:build": "pnpm run -r build",
28
28
  "demo:watch": "pnpm run -r dev",
29
- "lint": "pnpm run '/^(lint:biome|lint:eslint)$/'",
30
- "lint:biome": "biome check .",
31
- "lint:eslint": "eslint --ext .ts,.tsx .",
32
- "lint:fix": "pnpm run '/^(lint:biome|lint:eslint):fix$/'",
33
- "lint:eslint:fix": "eslint --ext .ts,.tsx . --fix",
34
- "lint:biome:fix": "biome check . --apply",
29
+ "lint": "oxlint . && prettier --check . --experimental-cli",
30
+ "lint:fix": "oxlint . --fix && prettier --write . --log-level=error --experimental-cli",
35
31
  "prepare": "npm run build",
36
32
  "build": "tsc",
37
33
  "test": "vitest run",
@@ -39,14 +35,36 @@
39
35
  "test:ci": "vitest run --coverage --reporter=junit --outputFile=./junit.xml"
40
36
  },
41
37
  "devDependencies": {
42
- "@biomejs/biome": "1.5.3",
43
- "@ctrl/eslint-config-biome": "2.0.9",
44
- "@sindresorhus/tsconfig": "5.0.0",
45
- "@types/node": "20.11.24",
46
- "@vitest/coverage-v8": "1.3.1",
47
- "typescript": "5.3.3",
48
- "uint8array-extras": "^1.1.0",
49
- "vitest": "1.3.1"
38
+ "@ctrl/eslint-config-biome": "5.0.1",
39
+ "@sindresorhus/tsconfig": "8.0.1",
40
+ "@trivago/prettier-plugin-sort-imports": "5.2.2",
41
+ "@types/node": "24.5.2",
42
+ "@vitest/coverage-v8": "3.2.4",
43
+ "oxlint": "1.18.0",
44
+ "prettier": "3.6.2",
45
+ "typescript": "5.9.2",
46
+ "uint8array-extras": "1.5.0",
47
+ "vitest": "3.2.4"
48
+ },
49
+ "prettier": {
50
+ "singleQuote": true,
51
+ "trailingComma": "all",
52
+ "arrowParens": "avoid",
53
+ "semi": true,
54
+ "printWidth": 100,
55
+ "plugins": [
56
+ "@trivago/prettier-plugin-sort-imports"
57
+ ],
58
+ "importOrder": [
59
+ "^node:.*$",
60
+ "<THIRD_PARTY_MODULES>",
61
+ "^(@ctrl)(/.*|$)",
62
+ "^\\.\\./(?!.*\\.css$)",
63
+ "^\\./(?!.*\\.css$)(?=.*/)",
64
+ "^\\./(?!.*\\.css$)(?!.*/)"
65
+ ],
66
+ "importOrderSeparation": true,
67
+ "importOrderSortSpecifiers": false
50
68
  },
51
69
  "publishConfig": {
52
70
  "access": "public",