anlyx 0.1.6-beta.0 → 0.1.6-beta.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/README.md CHANGED
@@ -14,7 +14,7 @@ The current primary path is Project JSON first. New setups should start from
14
14
  ## Quick Start
15
15
 
16
16
  ```bash
17
- npm install -D anlyx@latest
17
+ npm install -D anlyx@beta
18
18
  npx anlyx prompt init
19
19
  npx anlyx validate anlyx.project.json
20
20
  npx anlyx import anlyx.project.json
package/dist/index.js CHANGED
@@ -314,7 +314,7 @@ Before finishing, report what changed, what stayed uncertain, and whether valida
314
314
 
315
315
  Anlyx install and reference:
316
316
  - npm package: anlyx
317
- - install or upgrade command: npm install -D anlyx@latest
317
+ - install or upgrade command: npm install -D anlyx@beta
318
318
  - public repository and docs: https://github.com/suhannoh/anlyx
319
319
  - agent guide: https://github.com/suhannoh/anlyx/blob/main/docs/agent/anlyx-project-json-agent-guide.md
320
320
  - local viewer URL after running dev: http://localhost:4777
@@ -332,7 +332,7 @@ Goal:
332
332
  - Do not include secrets, production records, or raw personal data.
333
333
 
334
334
  Steps:
335
- 1. Install or upgrade Anlyx in this project: npm install -D anlyx@latest
335
+ 1. Install or upgrade Anlyx in this project: npm install -D anlyx@beta
336
336
  2. Check the installed package: npm ls anlyx @anlyx/core @anlyx/ui
337
337
  3. Read the public Anlyx docs if you need the contract.
338
338
  4. Inspect the repository and identify detected counts, pages, requests, flows, architecture nodes, evidence, overview, and capabilities.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "anlyx",
3
- "version": "0.1.6-beta.0",
3
+ "version": "0.1.6-beta.1",
4
4
  "description": "CLI for Anlyx Project JSON validation, import, and local 4777 viewing.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -35,9 +35,11 @@
35
35
  },
36
36
  "dependencies": {
37
37
  "jiti": "^2.7.0",
38
+ "react": "^18.3.1",
39
+ "react-dom": "^18.3.1",
38
40
  "vite": "^8.0.16",
39
- "@anlyx/ui": "0.1.6-beta.0",
40
- "@anlyx/core": "0.1.6-beta.0"
41
+ "@anlyx/core": "0.1.6-beta.1",
42
+ "@anlyx/ui": "0.1.6-beta.1"
41
43
  },
42
44
  "peerDependencies": {
43
45
  "react": ">=18.3.0 <20"