@coreframe/diagnostics 0.1.3 → 0.2.0

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 +1 -1
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -5,7 +5,7 @@ Production-readiness diagnostics engine for Coreframe projects.
5
5
  The package is intentionally UI-independent. It gathers local project facts,
6
6
  normalizes them into a project snapshot, evaluates the snapshot into findings,
7
7
  and builds action-oriented view models that can later be consumed by
8
- `@coreframe/scripts` and `@coreframe/dashboard`.
8
+ `@coreframe/deploy` and `@coreframe/dashboard`.
9
9
 
10
10
  This package is pre-alpha. Its public contracts are shaped for experimentation
11
11
  before production command paths or dashboard UI depend on them.
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@coreframe/diagnostics",
3
- "version": "0.1.3",
3
+ "version": "0.2.0",
4
+ "description": "Production-readiness diagnostics engine for Coreframe projects",
4
5
  "repository": {
5
6
  "type": "git",
6
7
  "url": "git+https://github.com/airlock-labs/coreframe.git",
7
- "directory": "diagnostics"
8
+ "directory": "node/diagnostics"
8
9
  },
9
10
  "files": [
10
11
  "dist/"
@@ -26,7 +27,7 @@
26
27
  "build": "tsdown",
27
28
  "test": "vitest run --reporter=minimal",
28
29
  "typecheck": "tsc --noEmit -p tsconfig.json",
29
- "format": "oxfmt",
30
+ "format": "oxlint --fix && oxfmt",
30
31
  "lint": "oxlint"
31
32
  }
32
33
  }