@merlean/analyzer 3.0.0 → 3.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 (3) hide show
  1. package/README.md +3 -3
  2. package/bin/cli.js +1 -1
  3. package/package.json +6 -6
package/README.md CHANGED
@@ -12,13 +12,13 @@ npm install -g @merlean/analyzer
12
12
 
13
13
  ```bash
14
14
  # Analyze current directory
15
- ai-bot-analyze --name "My App"
15
+ merleanalyze --name "My App"
16
16
 
17
17
  # Analyze specific path
18
- ai-bot-analyze ./my-project --name "My App"
18
+ merleanalyze ./my-project --name "My App"
19
19
 
20
20
  # Merge into existing site map
21
- ai-bot-analyze ./admin-panel --merge-with site_abc123
21
+ merleanalyze ./admin-panel --merge-with site_abc123
22
22
  ```
23
23
 
24
24
  Or use with npx (no installation required):
package/bin/cli.js CHANGED
@@ -34,7 +34,7 @@ try {
34
34
  // Find the platform-specific package
35
35
  const packagePath = require.resolve(`${packageName}/package.json`);
36
36
  const packageDir = path.dirname(packagePath);
37
- const binaryName = process.platform === 'win32' ? 'ai-bot-analyze.exe' : 'ai-bot-analyze';
37
+ const binaryName = process.platform === 'win32' ? 'merleanalyze.exe' : 'merleanalyze';
38
38
  binaryPath = path.join(packageDir, 'bin', binaryName);
39
39
 
40
40
  if (!fs.existsSync(binaryPath)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@merlean/analyzer",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "AI-powered codebase analyzer - generates site maps for AI assistant integration",
5
5
  "keywords": ["ai", "bot", "analyzer", "claude", "anthropic", "widget", "merlean"],
6
6
  "author": "zmaren",
@@ -15,16 +15,16 @@
15
15
  "access": "public"
16
16
  },
17
17
  "bin": {
18
- "ai-bot-analyze": "./bin/cli.js"
18
+ "merleanalyze": "./bin/cli.js"
19
19
  },
20
20
  "files": [
21
21
  "bin/"
22
22
  ],
23
23
  "optionalDependencies": {
24
- "@merlean/analyzer-darwin-arm64": "3.0.0",
25
- "@merlean/analyzer-darwin-x64": "3.0.0",
26
- "@merlean/analyzer-linux-x64": "3.0.0",
27
- "@merlean/analyzer-win32-x64": "3.0.0"
24
+ "@merlean/analyzer-darwin-arm64": "3.0.1",
25
+ "@merlean/analyzer-darwin-x64": "3.0.1",
26
+ "@merlean/analyzer-linux-x64": "3.0.1",
27
+ "@merlean/analyzer-win32-x64": "3.0.1"
28
28
  },
29
29
  "engines": {
30
30
  "node": ">=18.0.0"