@yalehwang/archguard 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -31,13 +31,13 @@ ArchGuard analyzes source code to extract architectural insights and generates *
31
31
  ### Installation
32
32
 
33
33
  ```bash
34
- npm install -g archguard
34
+ npm install -g @yalehwang/archguard
35
35
  ```
36
36
 
37
37
  Or as a dev dependency:
38
38
 
39
39
  ```bash
40
- npm install --save-dev archguard
40
+ npm install --save-dev @yalehwang/archguard
41
41
  ```
42
42
 
43
43
  ### Basic Usage
@@ -421,7 +421,7 @@ Valid .mmd
421
421
 
422
422
  ### Prerequisites
423
423
 
424
- - Node.js >= 18.0.0
424
+ - Node.js 18.x, 20.x, or 22.x LTS (Node.js 25+ not yet supported due to `tree-sitter` native addon compatibility)
425
425
  - npm or yarn
426
426
 
427
427
  Optional, for enhanced features:
@@ -431,7 +431,7 @@ Optional, for enhanced features:
431
431
  ### Setup
432
432
 
433
433
  ```bash
434
- git clone https://github.com/your-org/archguard.git
434
+ git clone https://github.com/yaleh/archguard.git
435
435
  cd archguard
436
436
  npm install
437
437
  npm run build
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yalehwang/archguard",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "description": "Automated architecture documentation generation tool with AI-powered Mermaid diagrams",
6
6
  "keywords": [
@@ -42,7 +42,7 @@
42
42
  "migrate": "node dist/scripts/migrate-to-mermaid.js"
43
43
  },
44
44
  "engines": {
45
- "node": ">=18.0.0"
45
+ "node": ">=18.0.0 <25"
46
46
  },
47
47
  "dependencies": {
48
48
  "@anthropic-ai/sdk": "^0.20.0",