refactor: update to use deno_package_json (#24688)

This is in preparation for extracting out node resolution code from
ext/node (which is something I'm going to do gradually over time).

Uses https://github.com/denoland/deno_package_json
This commit is contained in:
David Sherret 2024-07-23 17:34:46 -04:00 committed by GitHub
parent f0df54fc70
commit 6055629ee7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 123 additions and 101 deletions

View file

@ -3,8 +3,8 @@
use std::path::PathBuf;
use std::sync::Arc;
use deno_config::package_json::PackageJsonDepValue;
use deno_config::workspace::Workspace;
use deno_package_json::PackageJsonDepValue;
use deno_semver::package::PackageReq;
#[derive(Debug)]