@goshenkata/dryscan-cli 1.0.0 → 1.0.8

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.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ export {};
3
+ //# sourceMappingURL=cli.d.ts.map
@@ -0,0 +1,7 @@
1
+ type DupesOptions = {
2
+ json?: boolean;
3
+ ui?: boolean;
4
+ };
5
+ export declare function handleDupesCommand(path: string, options: DupesOptions): Promise<void>;
6
+ export {};
7
+ //# sourceMappingURL=dupes.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goshenkata/dryscan-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.8",
4
4
  "description": "CLI tool for DryScan - semantic code duplication analyzer",
5
5
  "type": "module",
6
6
  "main": "./dist/cli.js",
@@ -25,6 +25,10 @@
25
25
  ],
26
26
  "author": "Goshenkata",
27
27
  "license": "MIT",
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "https://github.com/Goshenkata/DryScan.git"
31
+ },
28
32
  "dependencies": {
29
33
  "@goshenkata/dryscan-core": "^1.0.0",
30
34
  "commander": "^14.0.2",