package.json Dependency Range Auditor
CodeParse a package.json's dependencies, devDependencies, peerDependencies, and optionalDependencies fields and classify each version specifier's range type, flagging wildcard ranges, the "latest" tag, git/URL/file/link dependencies, and packages listed with conflicting ranges across sections
Paste a package.json and get every dependency's version specifier classified by range type: exact pin, caret, tilde, comparator range, wildcard, npm dist-tag, git URL, tarball URL, or local file/link path. It flags the risky patterns that are easy to miss in a long dependency list: a wildcard or empty range that accepts literally any version, the non-reproducible "latest" tag, dependencies pulled from git or a URL instead of the registry, and a package listed in more than one section (dependencies, devDependencies, peerDependencies, optionalDependencies) with either a conflicting or a redundant range. This is a structural check on the specifiers themselves, not a live registry lookup or vulnerability scan.
How to use package.json Dependency Range Auditor
- 1.Paste your full package.json contents.
- 2.Review the per-dependency table: its section, range type, and any flagged issues.
- 3.Check the duplicates list for any package listed in more than one section, and fix conflicting ranges first since those are the most likely to cause install-time surprises.
Frequently asked questions
Use via API, SDK, or MCP
cURL# Free: 1,000 req/day · Pro: 10,000 req/day
curl -X POST https://api.utilix.tech/v1/tools/package-json-dependency-auditor \
-H "Authorization: Bearer utx_live_..." \
-H "Content-Type: application/json" \
-d '{"text":"{\n \"name\": \"pkg\",\n \"dependencies\": {\n \"lodash\": \"^4.17.21\",\n \"left-pad\": \"*\"\n },\n \"devDependencies\": {\n \"lodash\": \"~4.0.0\"\n }\n}\n"}'Get an API key from your dashboard · Full API docs →