@erode-app/cli 0.6.0 → 0.7.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 (2) hide show
  1. package/README.md +24 -0
  2. package/package.json +7 -5
package/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # @erode-app/cli
2
+
3
+ Interactive CLI for detecting architecture drift. Analyzes pull requests and
4
+ local git diffs against your declared architecture model.
5
+
6
+ ## Usage
7
+
8
+ ```sh
9
+ npx @erode-app/cli check
10
+ ```
11
+
12
+ Or install globally:
13
+
14
+ ```sh
15
+ npm install -g @erode-app/cli
16
+ ```
17
+
18
+ ## Documentation
19
+
20
+ Full docs at [erode.dev](https://erode.dev).
21
+
22
+ ## License
23
+
24
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erode-app/cli",
3
- "version": "0.6.0",
3
+ "version": "0.7.1",
4
4
  "description": "Interactive CLI for erode architecture drift detection",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",
@@ -21,6 +21,7 @@
21
21
  "clean": "rimraf dist",
22
22
  "prebuild": "npm run clean",
23
23
  "test": "vitest run",
24
+ "test:coverage": "vitest run --coverage",
24
25
  "test:watch": "vitest",
25
26
  "check:ci": "concurrently --group \"npm:lint\" \"npm:typecheck\" \"npm:format:check\" \"npm:build\""
26
27
  },
@@ -31,20 +32,21 @@
31
32
  },
32
33
  "license": "MIT",
33
34
  "dependencies": {
34
- "@erode-app/core": "0.6.0",
35
+ "@erode-app/core": "0.7.1",
35
36
  "chalk": "^5.3.0",
36
37
  "commander": "^14.0.2",
37
38
  "zod": "^4.1.13"
38
39
  },
39
40
  "devDependencies": {
40
41
  "@erode-app/eslint-config": "*",
41
- "@types/node": "^24.11.0",
42
+ "@types/node": "^24.12.0",
43
+ "@vitest/coverage-v8": "^4.0.18",
42
44
  "concurrently": "^9.2.1",
43
- "eslint": "^10.0.2",
45
+ "eslint": "^10.0.3",
44
46
  "prettier": "^3.7.3",
45
47
  "rimraf": "^6.1.2",
46
48
  "typescript": "^5.9.3",
47
- "vitest": "^4.0.14"
49
+ "vitest": "^4.1.0"
48
50
  },
49
51
  "publishConfig": {
50
52
  "access": "public"