upvote
The web api extensions and Nodejs compatibility stuff are now in deno_runtime: https://github.com/denoland/deno/blob/main/runtime/Cargo.tom...

The CLI only depends on them transitively via deno_runtime: https://github.com/denoland/deno/blob/main/cli/Cargo.toml

For instance I was able to run the following script using just deno_runtime with https://github.com/lrowe/deno_varnish/blob/main/src/main.rs

    import { DatabaseSync } from "node:sqlite";
    console.log(new DatabaseSync(":memory:").prepare("SELECT 1").get());
reply
Huh, it's come a long way since I last looked at it
reply