scrabble-cheater 3.15.0 → 3.15.2

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/cli.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
+ import { program as commander } from 'commander';
2
3
  import fs from 'node:fs/promises';
3
4
  import path from 'node:path';
4
- import { program as commander } from 'commander';
5
5
  import { ScrabbleCheater } from './index.js';
6
6
  const __dirname = import.meta.dirname;
7
7
  const packageJsonPath = path.join(__dirname, '../package.json');
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
+ import clipboard from 'clipboardy';
1
2
  import fs from 'node:fs/promises';
2
3
  import readline from 'node:readline';
3
- import clipboard from 'clipboardy';
4
4
  const defaultOptions = {
5
5
  letters: '',
6
6
  maximum: 0,
package/package.json CHANGED
@@ -2,15 +2,15 @@
2
2
  "author": "Florian Imdahl <git@ffflorian.de>",
3
3
  "bin": "dist/cli.js",
4
4
  "dependencies": {
5
- "clipboardy": "5.0.2",
6
- "commander": "14.0.2"
5
+ "clipboardy": "5.1.0",
6
+ "commander": "14.0.3"
7
7
  },
8
8
  "description": "A simple Scrabble cheating tool.",
9
9
  "devDependencies": {
10
10
  "rimraf": "6.1.2",
11
11
  "tsx": "4.21.0",
12
12
  "typescript": "5.9.3",
13
- "vitest": "4.0.16"
13
+ "vitest": "4.0.18"
14
14
  },
15
15
  "engines": {
16
16
  "node": ">= 21"
@@ -38,6 +38,6 @@
38
38
  "test": "vitest run"
39
39
  },
40
40
  "type": "module",
41
- "version": "3.15.0",
42
- "gitHead": "b968c846095113cbe57fbdd34e4593a4dea8a1c9"
41
+ "version": "3.15.2",
42
+ "gitHead": "59997e7c64b551213644945256b13ff3ba1ccfcd"
43
43
  }