technical-debt-radar 1.0.0 → 1.0.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.js +1 -1
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -20611,7 +20611,7 @@ async function upgradeCommand() {
20611
20611
 
20612
20612
  // src/index.ts
20613
20613
  var program = new import_commander.Command();
20614
- program.name("radar").description("Technical Debt Radar \u2014 Architecture & Runtime Safety CLI").version("1.0.0");
20614
+ program.name("radar").description("Technical Debt Radar \u2014 Architecture & Runtime Safety CLI").version("1.0.1");
20615
20615
  program.command("scan <path>").description("Scan a directory for technical debt").option("-c, --config <path>", "Path to radar.yml", "./radar.yml").option("-r, --rules <path>", "Path to rules.yml (default: ./rules.yml)").option("-f, --format <type>", "Output format: text, json, table, markdown, ai-prompt, ai-json, pr", "text").option("--fail-on <severity>", "Exit code 1 on: critical, warning", "critical").option("--no-ai", "Skip AI analysis (faster, no API cost)").action(async (targetPath, options) => {
20616
20616
  await scanCommand(targetPath, options);
20617
20617
  });
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "technical-debt-radar",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Stop Node.js production crashes before merge. 47 detection patterns across 5 categories.",
5
5
  "bin": {
6
- "radar": "./dist/index.js",
7
- "technical-debt-radar": "./dist/index.js"
6
+ "radar": "dist/index.js",
7
+ "technical-debt-radar": "dist/index.js"
8
8
  },
9
9
  "files": [
10
10
  "dist/",
@@ -30,7 +30,7 @@
30
30
  "license": "MIT",
31
31
  "repository": {
32
32
  "type": "git",
33
- "url": "https://github.com/khalid-Elattar/technical_dept_radar"
33
+ "url": "git+https://github.com/khalid-Elattar/technical_dept_radar.git"
34
34
  },
35
35
  "homepage": "https://technical-debt-radar.vercel.app",
36
36
  "engines": {