Script Parser
Knip parses shell commands and scripts to find additional dependencies, entry files and configuration files in various places:
- In
package.json
- In specific
config
files - In source code
Shell scripts can be read and statically analyzed, but they’re not executed.
package.json
The main
, bin
, exports
and scripts
fields may contain entry files. Let’s
take a look at this example:
From this example, Knip automatically adds the following files as entry files:
index.js
./dist/index.mjs
./dist/index.cjs
bin/cli.js
src/entry.ts
server.ts
Excluded files
Knip would not add the exports
if the dist
folder is matching a pattern in a
relevant .gitignore
file or ignore
option.
Knip does not add scripts without a standard extension. For instance, the
bin/tool
file might be a valid executable for Node.js, but wouldn’t be added
or parsed by Knip.
package.json
When parsing the scripts
entries of package.json
, Knip detects various types
of inputs. Some examples:
- The first positional argument is usually an entry file
- Configuration files are often in the
-c
or--config
argument - The
--require
,--loader
or--import
arguments are often dependencies
This will have tsx
marked as a referenced dependency, and adds run.ts
as an
entry file.
The following files are detected as configuration files:
tsup.lib.config.ts
- to be handled by the tsup plugintsconfig.app.json
- to be handled by the TypeScript plugin
The arguments are defined in plugins separately for fine-grained results.
Plugins
Some plugins also use the script parser to extract entry files and dependencies from commands. A few examples:
- GitHub Actions: workflow files may contain
run
commands (e.g..github/workflows/ci.yml
) - Husky & Lefthook: Git hooks such as
.git/hooks/pre-push
contain scripts; alsolefthook.yml
hasrun
commands - Lint Staged: configuration values are all commands
- Nx: task executors and
nx:run-commands
executors inproject.json
contains scripts - Release It:
hooks
contain commands
Plugins can also return configuration files. Some examples:
- The Angular detects
options.tsConfig
as a TypeScript config file - The GitHub Actions plugin parses
run
commands which may contain configuration file paths
Source Code
When Knip is walking the abstract syntax trees (ASTs) of JavaScript and TypeScript source code files, it looks for imports and exports. But there’s a few more (rather obscure) things that Knip detects in the process. Below are examples of additional scripts Knip parses to find entry files and dependencies.
bun
If the bun
dependency is imported in source code, Knip considers the contents
of $
template tags to be scripts:
Parsing the script results in the boxen
binary (the boxen-cli
dependency) as
referenced (twice).
execa
If the execa
dependency is imported in source code, Knip considers the
contents of $
template tags to be scripts:
Parsing the script results in hydrate.js
added as an entry file and the c8
binary/dependency as referenced.
zx
If the zx
dependency is imported in source code, Knip considers the contents
of $
template tags to be scripts:
This will add scripts/parse.js
as an entry file.
ISC License © 2024 Lars Kappert