projectify-cli 2.0.1 → 2.0.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/README.md CHANGED
@@ -4,8 +4,8 @@
4
4
 
5
5
  Projectify is a powerful, standalone Node.js tool designed to analyze codebase architectures, calculate dependency impacts ("Blast Radius"), and generate stunning, interactive visualizations. Built with TypeScript and powered by AI.
6
6
 
7
- ![Projectify HTML Report](./graph.png)
8
- ![Projectify HTML Report](./functions.png)
7
+ ![Projectify HTML Report](https://github.com/GreenHacker420/project-analyzer/raw/main/graph.png)
8
+ ![Projectify HTML Report](https://github.com/GreenHacker420/project-analyzer/raw/main/functions.png)
9
9
 
10
10
  ## Features
11
11
 
package/dist/index.js CHANGED
@@ -18,7 +18,7 @@ const program = new commander_1.Command();
18
18
  program
19
19
  .name('projectify')
20
20
  .description('Projectify - Autonomous Code Analysis & Visualization')
21
- .version('2.0.1');
21
+ .version('2.0.2');
22
22
  program
23
23
  .argument('[path]', 'Project path to analyze', '.')
24
24
  .option('--no-ai', 'Skip AI analysis')
package/package.json CHANGED
@@ -1,11 +1,15 @@
1
1
  {
2
2
  "name": "projectify-cli",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Project Analyzer using LangChain",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
7
7
  "projectify": "dist/index.js"
8
8
  },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/GreenHacker420/project-analyzer.git"
12
+ },
9
13
  "files": [
10
14
  "dist",
11
15
  "package.json",