mlreps 0.1.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 (4) hide show
  1. package/LICENSE.md +105 -0
  2. package/README.md +108 -0
  3. package/mlreps.js +7273 -0
  4. package/package.json +27 -0
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "mlreps",
3
+ "version": "0.1.0",
4
+ "description": "Reads a repository and reports what a change to it would reach. Runs in your own pipeline; publishes the graph it built, never your source.",
5
+ "type": "module",
6
+ "bin": {
7
+ "mlreps": "mlreps.js"
8
+ },
9
+ "files": [
10
+ "mlreps.js",
11
+ "README.md",
12
+ "LICENSE.md"
13
+ ],
14
+ "engines": {
15
+ "node": ">=20.0.0"
16
+ },
17
+ "dependencies": {
18
+ "typescript": "^5"
19
+ },
20
+ "license": "FSL-1.1-ALv2",
21
+ "keywords": [
22
+ "static-analysis",
23
+ "dependency-graph",
24
+ "code-review",
25
+ "impact-analysis"
26
+ ]
27
+ }