fallow 2.8.1 → 2.9.1

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 +9 -9
package/README.md CHANGED
@@ -6,7 +6,7 @@ The codebase analyzer for TypeScript and JavaScript, built in Rust.
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, and code duplication. Found in seconds, not minutes. fallow analyzes your codebase for unused files, exports, dependencies, and types, detects circular dependencies, and finds duplicated code blocks. **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
+ 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.
10
10
 
11
11
  ## Installation
12
12
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "fallow",
3
- "version": "2.8.1",
4
- "description": "Find unused code, circular dependencies, code duplication, and complexity hotspots in TypeScript/JavaScript projects",
3
+ "version": "2.9.1",
4
+ "description": "Codebase analyzer for TypeScript/JavaScript — unused code, circular dependencies, code duplication, complexity hotspots, and architecture boundary violations",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -39,12 +39,12 @@
39
39
  "detect-libc": "^2.0.0"
40
40
  },
41
41
  "optionalDependencies": {
42
- "@fallow-cli/darwin-arm64": "2.8.1",
43
- "@fallow-cli/darwin-x64": "2.8.1",
44
- "@fallow-cli/linux-x64-gnu": "2.8.1",
45
- "@fallow-cli/linux-arm64-gnu": "2.8.1",
46
- "@fallow-cli/linux-x64-musl": "2.8.1",
47
- "@fallow-cli/linux-arm64-musl": "2.8.1",
48
- "@fallow-cli/win32-x64-msvc": "2.8.1"
42
+ "@fallow-cli/darwin-arm64": "2.9.1",
43
+ "@fallow-cli/darwin-x64": "2.9.1",
44
+ "@fallow-cli/linux-x64-gnu": "2.9.1",
45
+ "@fallow-cli/linux-arm64-gnu": "2.9.1",
46
+ "@fallow-cli/linux-x64-musl": "2.9.1",
47
+ "@fallow-cli/linux-arm64-musl": "2.9.1",
48
+ "@fallow-cli/win32-x64-msvc": "2.9.1"
49
49
  }
50
50
  }