@anarchitects/governance-adapter-typescript 0.0.1 → 0.0.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 +9 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -76,6 +76,15 @@ The root export currently includes:
76
76
 
77
77
  The current API is a set of composable adapter primitives. It does not expose a single all-in-one host runner.
78
78
 
79
+ Parity already covered inside this package includes:
80
+
81
+ - workspace detection and probe-style support heuristics
82
+ - package-manager workspace parsing
83
+ - TypeScript project discovery and tag derivation
84
+ - `tsconfig` / path-alias resolution
85
+ - static import graph extraction
86
+ - normalization into Governance Core adapter result inputs
87
+
79
88
  ## Usage
80
89
 
81
90
  The typical workflow is:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anarchitects/governance-adapter-typescript",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Platform-independent Governance TypeScript workspace adapter that normalizes discovery into Governance Core contracts.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -52,7 +52,7 @@
52
52
  }
53
53
  },
54
54
  "dependencies": {
55
- "@anarchitects/governance-core": "^0.0.1",
55
+ "@anarchitects/governance-core": "^0.0.2",
56
56
  "minimatch": "^10.1.1",
57
57
  "typescript": "~5.9.2",
58
58
  "yaml": "^2.8.1"