@clerc/plugin-not-found 1.2.0 → 1.3.0-beta.1

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/dist/index.d.mts +4 -4
  2. package/package.json +2 -4
package/dist/index.d.mts CHANGED
@@ -3,10 +3,10 @@ import { Plugin } from "@clerc/core";
3
3
  //#region src/index.d.ts
4
4
  interface NotFoundPluginOptions {
5
5
  /**
6
- * Distance threshold for suggesting commands.
7
- *
8
- * @default 5
9
- */
6
+ * Distance threshold for suggesting commands.
7
+ *
8
+ * @default 5
9
+ */
10
10
  distanceThreshold?: number;
11
11
  }
12
12
  declare const notFoundPlugin: ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clerc/plugin-not-found",
3
- "version": "1.2.0",
3
+ "version": "1.3.0-beta.1",
4
4
  "author": "Ray <i@mk1.io> (https://github.com/so1ve)",
5
5
  "type": "module",
6
6
  "description": "Clerc plugin not found (did you mean)",
@@ -28,8 +28,6 @@
28
28
  ".": "./dist/index.mjs",
29
29
  "./package.json": "./package.json"
30
30
  },
31
- "main": "./dist/index.mjs",
32
- "module": "./dist/index.mjs",
33
31
  "types": "./dist/index.d.mts",
34
32
  "files": [
35
33
  "dist"
@@ -42,7 +40,7 @@
42
40
  },
43
41
  "devDependencies": {
44
42
  "fastest-levenshtein": "^1.0.16",
45
- "@clerc/core": "1.2.0"
43
+ "@clerc/core": "1.3.0-beta.1"
46
44
  },
47
45
  "peerDependencies": {
48
46
  "@clerc/core": "*"