Screen declared npm packages before you install them
Screen declared npm packages before you install them. POST package.json (optional lockfile) ($0.02). After payment we look up each name on the npm registry and OSV: missing/hallucinated packages, lookalikes, brand-new publishes, deprecations, known CVEs. Returns 0–100, do_this_first, ci_failed. Caps at 60 packages; never fetches buyer URLs. Report: GET /v1/tools/dep-doctor/report?project=your-app.
20000 (raw units)
price
2
calls / 30d
1
unique payers
2026-08-21
updated
Provider
quietstore-production.edge-7e13f.workers.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x8f9ef7f8c4744bfaedaa5d315c21f9770c10f931",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"min_score": 80,
"package_json": {
"dependencies": {
"lodash": "4.17.21"
},
"name": "my-app"
},
"project": "my-app"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"metered": true,
"result": {
"ci_failed": true,
"do_this_first": [
{
"fix": "Upgrade lodash off 4.17.21.",
"id": "OSV:[email protected]",
"title": "[email protected] has OSV records"
}
],
"label": "Great",
"score": 75
},
"tool": {
"id": "tool-dep-doctor",
"price_version": 1,
"title": "Lockfile doctor: live npm + OSV punch list"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://quietstore-production.edge-7e13f.workers.dev/v1/tools/dep-doctor" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://quietstore-production.edge-7e13f.workers.dev/v1/tools/dep-doctor");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://quietstore-production.edge-7e13f.workers.dev/v1/tools/dep-doctor")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/5389.json, and this resource appears in /discovery/resources and /discovery/search.