fallow 2.41.0 → 2.43.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 +4 -2
  2. package/package.json +9 -9
package/README.md CHANGED
@@ -1,12 +1,14 @@
1
1
  # fallow
2
2
 
3
- The codebase analyzer for TypeScript and JavaScript, built in Rust.
3
+ Codebase intelligence for TypeScript and JavaScript, built in Rust.
4
4
 
5
5
  [![CI](https://github.com/fallow-rs/fallow/actions/workflows/ci.yml/badge.svg)](https://github.com/fallow-rs/fallow/actions/workflows/ci.yml)
6
6
  [![npm](https://img.shields.io/npm/v/fallow.svg)](https://www.npmjs.com/package/fallow)
7
7
  [![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/fallow-rs/fallow/blob/main/LICENSE)
8
8
 
9
- Unused code, circular dependencies, code duplication, complexity hotspots, and architecture boundary violations. Found in seconds, not minutes. fallow analyzes your codebase for unused files, exports, dependencies, and types, detects circular dependencies, finds duplicated code blocks, surfaces complexity hotspots, and enforces architecture boundaries. **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.
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.41.0",
4
- "description": "Codebase analyzer for TypeScript/JavaScript unused code, circular dependencies, code duplication, complexity hotspots, and architecture boundary violations",
3
+ "version": "2.43.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.41.0",
45
- "@fallow-cli/darwin-x64": "2.41.0",
46
- "@fallow-cli/linux-x64-gnu": "2.41.0",
47
- "@fallow-cli/linux-arm64-gnu": "2.41.0",
48
- "@fallow-cli/linux-x64-musl": "2.41.0",
49
- "@fallow-cli/linux-arm64-musl": "2.41.0",
50
- "@fallow-cli/win32-x64-msvc": "2.41.0"
44
+ "@fallow-cli/darwin-arm64": "2.43.0",
45
+ "@fallow-cli/darwin-x64": "2.43.0",
46
+ "@fallow-cli/linux-x64-gnu": "2.43.0",
47
+ "@fallow-cli/linux-arm64-gnu": "2.43.0",
48
+ "@fallow-cli/linux-x64-musl": "2.43.0",
49
+ "@fallow-cli/linux-arm64-musl": "2.43.0",
50
+ "@fallow-cli/win32-x64-msvc": "2.43.0"
51
51
  }
52
52
  }