legacyver 3.4.0 → 3.4.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.
package/package.json CHANGED
@@ -1,8 +1,16 @@
1
1
  {
2
2
  "name": "legacyver",
3
- "version": "3.4.0",
3
+ "version": "3.4.1",
4
4
  "description": "AI-powered CLI tool to auto-generate technical documentation from legacy/undocumented codebases",
5
5
  "main": "src/index.js",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/Dhnillhaq/Legacyver-Node-Package.git"
9
+ },
10
+ "bugs": {
11
+ "url": "https://github.com/Dhnillhaq/Legacyver-Node-Package/issues"
12
+ },
13
+ "homepage": "https://github.com/Dhnillhaq/Legacyver-Node-Package#readme",
6
14
  "bin": {
7
15
  "legacyver": "bin/legacyver.js"
8
16
  },
@@ -7,7 +7,7 @@ const DEFAULT_MODEL = 'openai/gpt-oss-120b';
7
7
  // Built-in shared key — lets users run legacyver out of the box without setup.
8
8
  // Users can override with their own GROQ_API_KEY env var for higher rate limits.
9
9
  // Groq does NOT auto-revoke keys found in public packages (unlike OpenRouter).
10
- const BUILT_IN_KEY = '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';
10
+ const BUILT_IN_KEY = 'YOUR_API_KEY_HERE'; // <-- REPLACE WITH YOUR GROQ API KEY BEFORE PUBLISHING
11
11
 
12
12
  class GroqProvider {
13
13
  constructor(config) {