fallow 2.40.3 → 2.42.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.
- package/README.md +4 -2
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
# fallow
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Codebase intelligence for TypeScript and JavaScript, built in Rust.
|
|
4
4
|
|
|
5
5
|
[](https://github.com/fallow-rs/fallow/actions/workflows/ci.yml)
|
|
6
6
|
[](https://www.npmjs.com/package/fallow)
|
|
7
7
|
[](https://github.com/fallow-rs/fallow/blob/main/LICENSE)
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Static analysis finds what is connected. Runtime intelligence finds what actually runs. Both land in the same report. The free static layer analyzes your codebase for unused files, exports, dependencies, and types, detects circular dependencies, finds duplicated code blocks, surfaces complexity hotspots, and enforces architecture boundaries. An optional paid runtime layer (Fallow Runtime) adds production execution evidence so you can delete and refactor with confidence. **5-41x faster** than [knip](https://knip.dev) v5 (**2-18x faster** than knip v6), **8-29x faster** than [jscpd](https://github.com/kucherenko/jscpd) for duplication detection, with no Node.js runtime dependency.
|
|
10
|
+
|
|
11
|
+
Static analysis is free and open source. Runtime intelligence is the paid team layer.
|
|
10
12
|
|
|
11
13
|
## Installation
|
|
12
14
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fallow",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "Codebase
|
|
3
|
+
"version": "2.42.0",
|
|
4
|
+
"description": "Codebase intelligence for TypeScript and JavaScript. Finds unused code, duplication, circular dependencies, complexity hotspots, and architecture drift. Optional runtime intelligence layer (Fallow Runtime) adds production execution evidence. Rust-native, sub-second, 90 framework plugins.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -41,12 +41,12 @@
|
|
|
41
41
|
"detect-libc": "2.1.2"
|
|
42
42
|
},
|
|
43
43
|
"optionalDependencies": {
|
|
44
|
-
"@fallow-cli/darwin-arm64": "2.
|
|
45
|
-
"@fallow-cli/darwin-x64": "2.
|
|
46
|
-
"@fallow-cli/linux-x64-gnu": "2.
|
|
47
|
-
"@fallow-cli/linux-arm64-gnu": "2.
|
|
48
|
-
"@fallow-cli/linux-x64-musl": "2.
|
|
49
|
-
"@fallow-cli/linux-arm64-musl": "2.
|
|
50
|
-
"@fallow-cli/win32-x64-msvc": "2.
|
|
44
|
+
"@fallow-cli/darwin-arm64": "2.42.0",
|
|
45
|
+
"@fallow-cli/darwin-x64": "2.42.0",
|
|
46
|
+
"@fallow-cli/linux-x64-gnu": "2.42.0",
|
|
47
|
+
"@fallow-cli/linux-arm64-gnu": "2.42.0",
|
|
48
|
+
"@fallow-cli/linux-x64-musl": "2.42.0",
|
|
49
|
+
"@fallow-cli/linux-arm64-musl": "2.42.0",
|
|
50
|
+
"@fallow-cli/win32-x64-msvc": "2.42.0"
|
|
51
51
|
}
|
|
52
52
|
}
|