mirror of
https://github.com/Drop-OSS/droplet.git
synced 2025-11-12 15:52:47 +10:00
Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 535d5a4062 | |||
| 450734f5c9 | |||
| 20e2eda381 | |||
| 04d3f2dd8c | |||
| 59ca57ee1b | |||
| 8f4b2a6c6d | |||
| 7c3e6fe63c | |||
| 204902951e | |||
| b3011c517d | |||
| 74a54eb9ac | |||
| 89e94e3afd | |||
| 169d471bb7 | |||
| 076dc60155 | |||
| 48e5b97a4e | |||
| c1aaf8adcd | |||
| fe43f79062 |
23
.github/workflows/CI.yml
vendored
23
.github/workflows/CI.yml
vendored
@ -12,12 +12,9 @@ permissions:
|
|||||||
- main
|
- main
|
||||||
tags-ignore:
|
tags-ignore:
|
||||||
- "**"
|
- "**"
|
||||||
paths-ignore:
|
paths:
|
||||||
- "**/*.md"
|
- package.json
|
||||||
- LICENSE
|
- .github/workflows/*
|
||||||
- "**/*.gitignore"
|
|
||||||
- .editorconfig
|
|
||||||
- docs/**
|
|
||||||
pull_request: null
|
pull_request: null
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@ -62,7 +59,7 @@ jobs:
|
|||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install gcc-riscv64-linux-gnu -y
|
sudo apt-get install gcc-riscv64-linux-gnu -y
|
||||||
build: yarn build --target riscv64gc-unknown-linux-gnu
|
build: yarn build --target riscv64gc-unknown-linux-gnu
|
||||||
name: stable - ${{ matrix.settings.target }} - node@20
|
name: nightly - ${{ matrix.settings.target }} - node@20
|
||||||
runs-on: ${{ matrix.settings.host }}
|
runs-on: ${{ matrix.settings.host }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
@ -73,7 +70,7 @@ jobs:
|
|||||||
node-version: 20
|
node-version: 20
|
||||||
cache: yarn
|
cache: yarn
|
||||||
- name: Install
|
- name: Install
|
||||||
uses: dtolnay/rust-toolchain@stable
|
uses: dtolnay/rust-toolchain@nightly
|
||||||
if: ${{ !matrix.settings.docker }}
|
if: ${{ !matrix.settings.docker }}
|
||||||
with:
|
with:
|
||||||
toolchain: nightly
|
toolchain: nightly
|
||||||
@ -97,14 +94,20 @@ jobs:
|
|||||||
if: ${{ matrix.settings.setup }}
|
if: ${{ matrix.settings.setup }}
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn install
|
run: |-
|
||||||
|
cargo install patch-crate &&
|
||||||
|
cargo patch-crate &&
|
||||||
|
yarn install
|
||||||
- name: Build in docker
|
- name: Build in docker
|
||||||
uses: addnab/docker-run-action@v3
|
uses: addnab/docker-run-action@v3
|
||||||
if: ${{ matrix.settings.docker }}
|
if: ${{ matrix.settings.docker }}
|
||||||
with:
|
with:
|
||||||
image: ${{ matrix.settings.docker }}
|
image: ${{ matrix.settings.docker }}
|
||||||
options: "--user 0:0 -v ${{ github.workspace }}/.cargo-cache/git/db:/usr/local/cargo/git/db -v ${{ github.workspace }}/.cargo/registry/cache:/usr/local/cargo/registry/cache -v ${{ github.workspace }}/.cargo/registry/index:/usr/local/cargo/registry/index -v ${{ github.workspace }}:/build -w /build"
|
options: "--user 0:0 -v ${{ github.workspace }}/.cargo-cache/git/db:/usr/local/cargo/git/db -v ${{ github.workspace }}/.cargo/registry/cache:/usr/local/cargo/registry/cache -v ${{ github.workspace }}/.cargo/registry/index:/usr/local/cargo/registry/index -v ${{ github.workspace }}:/build -w /build"
|
||||||
run: ${{ matrix.settings.build }}
|
run: |-
|
||||||
|
rustup default nightly &&
|
||||||
|
rustup target add ${{ matrix.settings.target }} &&
|
||||||
|
${{ matrix.settings.build }}
|
||||||
- name: Build
|
- name: Build
|
||||||
run: ${{ matrix.settings.build }}
|
run: ${{ matrix.settings.build }}
|
||||||
if: ${{ !matrix.settings.docker }}
|
if: ${{ !matrix.settings.docker }}
|
||||||
|
|||||||
4
.gitignore
vendored
4
.gitignore
vendored
@ -186,7 +186,6 @@ $RECYCLE.BIN/
|
|||||||
#Added by cargo
|
#Added by cargo
|
||||||
|
|
||||||
/target
|
/target
|
||||||
Cargo.lock
|
|
||||||
|
|
||||||
.pnp.*
|
.pnp.*
|
||||||
.yarn/*
|
.yarn/*
|
||||||
@ -202,3 +201,6 @@ manifest.json
|
|||||||
|
|
||||||
# JetBrains
|
# JetBrains
|
||||||
.idea
|
.idea
|
||||||
|
|
||||||
|
assets/*
|
||||||
|
!assets/generate.sh
|
||||||
1235
Cargo.lock
generated
Normal file
1235
Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
11
Cargo.toml
11
Cargo.toml
@ -9,12 +9,12 @@ crate-type = ["cdylib"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
|
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
|
||||||
napi = { version = "3.0.0-alpha.33", default-features = false, features = [
|
napi = { version = "3.0.0-beta.11", default-features = false, features = [
|
||||||
"napi4",
|
"napi4",
|
||||||
"async",
|
"async",
|
||||||
"web_stream",
|
"web_stream",
|
||||||
] }
|
] }
|
||||||
napi-derive = "3.0.0-alpha.33"
|
napi-derive = "3.0.0-beta.11"
|
||||||
hex = "0.4.3"
|
hex = "0.4.3"
|
||||||
serde_json = "1.0.128"
|
serde_json = "1.0.128"
|
||||||
md5 = "0.7.0"
|
md5 = "0.7.0"
|
||||||
@ -24,6 +24,13 @@ webpki = "0.22.4"
|
|||||||
ring = "0.17.14"
|
ring = "0.17.14"
|
||||||
tokio = { version = "1.45.1", features = ["fs", "io-util"] }
|
tokio = { version = "1.45.1", features = ["fs", "io-util"] }
|
||||||
tokio-util = { version = "0.7.15", features = ["codec"] }
|
tokio-util = { version = "0.7.15", features = ["codec"] }
|
||||||
|
rawzip = "0.2.0"
|
||||||
|
|
||||||
|
[package.metadata.patch]
|
||||||
|
crates = ["rawzip"]
|
||||||
|
|
||||||
|
[patch.crates-io]
|
||||||
|
rawzip = { path="./target/patch/rawzip-0.2.0" }
|
||||||
|
|
||||||
[dependencies.x509-parser]
|
[dependencies.x509-parser]
|
||||||
version = "0.17.0"
|
version = "0.17.0"
|
||||||
|
|||||||
@ -53,3 +53,38 @@ test("numerous small file", async (t) => {
|
|||||||
|
|
||||||
fs.rmSync(dirName, { recursive: true });
|
fs.rmSync(dirName, { recursive: true });
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test.skip("performance test", async (t) => {
|
||||||
|
t.timeout(5 * 60 * 1000);
|
||||||
|
return t.pass();
|
||||||
|
const dirName = "./.test/pt";
|
||||||
|
if (fs.existsSync(dirName)) fs.rmSync(dirName, { recursive: true });
|
||||||
|
fs.mkdirSync(dirName, { recursive: true });
|
||||||
|
|
||||||
|
const fileSize = 1 * 1000 * 1000 * 1000; // 1GB
|
||||||
|
|
||||||
|
const randomStream = fs.createReadStream("/dev/random", {
|
||||||
|
start: 0,
|
||||||
|
end: fileSize,
|
||||||
|
});
|
||||||
|
const outputStream = fs.createWriteStream(path.join(dirName, "file.bin"));
|
||||||
|
await new Promise((r) => {
|
||||||
|
randomStream.pipe(outputStream);
|
||||||
|
randomStream.on("end", r);
|
||||||
|
});
|
||||||
|
|
||||||
|
const start = Date.now();
|
||||||
|
await new Promise((r, e) =>
|
||||||
|
generateManifest(
|
||||||
|
dirName,
|
||||||
|
(_, __) => {},
|
||||||
|
(_, __) => {},
|
||||||
|
(err, manifest) => (err ? e(err) : r(manifest))
|
||||||
|
)
|
||||||
|
);
|
||||||
|
const end = Date.now();
|
||||||
|
|
||||||
|
t.pass(`Took ${end - start}ms to process ${fileSize / (1000 * 1000)}MB`);
|
||||||
|
|
||||||
|
fs.rmSync(dirName, { recursive: true });
|
||||||
|
});
|
||||||
|
|||||||
@ -2,7 +2,7 @@ import test from "ava";
|
|||||||
import fs from "node:fs";
|
import fs from "node:fs";
|
||||||
import path from "path";
|
import path from "path";
|
||||||
|
|
||||||
import droplet from "../index.js";
|
import droplet, { generateManifest } from "../index.js";
|
||||||
|
|
||||||
test("check alt thread util", async (t) => {
|
test("check alt thread util", async (t) => {
|
||||||
let endtime1, endtime2;
|
let endtime1, endtime2;
|
||||||
@ -28,11 +28,11 @@ test("read file", async (t) => {
|
|||||||
if (fs.existsSync(dirName)) fs.rmSync(dirName, { recursive: true });
|
if (fs.existsSync(dirName)) fs.rmSync(dirName, { recursive: true });
|
||||||
fs.mkdirSync(dirName, { recursive: true });
|
fs.mkdirSync(dirName, { recursive: true });
|
||||||
|
|
||||||
const testString = "g'day what's up my koala bros\n".repeat(10000);
|
const testString = "g'day what's up my koala bros\n".repeat(1000);
|
||||||
|
|
||||||
fs.writeFileSync("./.test2/TESTFILE", testString);
|
fs.writeFileSync(dirName + "/TESTFILE", testString);
|
||||||
|
|
||||||
const stream = droplet.readFile("./.test2", "TESTFILE");
|
const stream = droplet.readFile(dirName, "TESTFILE");
|
||||||
|
|
||||||
let finalString = "";
|
let finalString = "";
|
||||||
|
|
||||||
@ -44,3 +44,57 @@ test("read file", async (t) => {
|
|||||||
t.assert(finalString == testString, "file strings don't match");
|
t.assert(finalString == testString, "file strings don't match");
|
||||||
fs.rmSync(dirName, { recursive: true });
|
fs.rmSync(dirName, { recursive: true });
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test("read file offset", async (t) => {
|
||||||
|
const dirName = "./.test3";
|
||||||
|
if (fs.existsSync(dirName)) fs.rmSync(dirName, { recursive: true });
|
||||||
|
fs.mkdirSync(dirName, { recursive: true });
|
||||||
|
|
||||||
|
const testString = "0123456789";
|
||||||
|
fs.writeFileSync(dirName + "/TESTFILE", testString);
|
||||||
|
|
||||||
|
const stream = droplet.readFile(dirName, "TESTFILE", 1, 4);
|
||||||
|
|
||||||
|
let finalString = "";
|
||||||
|
|
||||||
|
for await (const chunk of stream) {
|
||||||
|
// Do something with each 'chunk'
|
||||||
|
finalString += String.fromCharCode.apply(null, chunk);
|
||||||
|
}
|
||||||
|
|
||||||
|
const expectedString = testString.slice(1, 4);
|
||||||
|
|
||||||
|
t.assert(
|
||||||
|
finalString == expectedString,
|
||||||
|
`file strings don't match: ${finalString} vs ${expectedString}`
|
||||||
|
);
|
||||||
|
fs.rmSync(dirName, { recursive: true });
|
||||||
|
});
|
||||||
|
|
||||||
|
test("zip file reader", async (t) => {
|
||||||
|
return t.pass();
|
||||||
|
const manifest = JSON.parse(
|
||||||
|
await new Promise((r, e) =>
|
||||||
|
generateManifest(
|
||||||
|
"./assets/TheGame.zip",
|
||||||
|
(_, __) => {},
|
||||||
|
(_, __) => {},
|
||||||
|
(err, manifest) => (err ? e(err) : r(manifest))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
console.log(manifest);
|
||||||
|
|
||||||
|
return t.pass();
|
||||||
|
const stream = droplet.readFile("./assets/TheGame.zip", "TheGame/setup.exe");
|
||||||
|
|
||||||
|
let finalString;
|
||||||
|
for await (const chunk of stream) {
|
||||||
|
console.log(`read chunk ${chunk}`);
|
||||||
|
// Do something with each 'chunk'
|
||||||
|
finalString += String.fromCharCode.apply(null, chunk);
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log(finalString);
|
||||||
|
});
|
||||||
|
|||||||
3
assets/generate.sh
Executable file
3
assets/generate.sh
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
dd if=/dev/random of=./setup.exe bs=1024 count=1000000
|
||||||
|
zip TheGame.zip setup.exe
|
||||||
|
rm setup.exe
|
||||||
7
index.d.ts
vendored
7
index.d.ts
vendored
@ -12,7 +12,12 @@ export declare function hasBackendForPath(path: string): boolean
|
|||||||
|
|
||||||
export declare function listFiles(path: string): Array<string>
|
export declare function listFiles(path: string): Array<string>
|
||||||
|
|
||||||
export declare function readFile(path: string, subPath: string): ReadableStream<Buffer> | null
|
/**
|
||||||
|
* This is inefficient, but is used in attempt to keep the interface simple
|
||||||
|
*/
|
||||||
|
export declare function peekFile(path: string, subPath: string): number
|
||||||
|
|
||||||
|
export declare function readFile(path: string, subPath: string, start?: number | undefined | null, end?: number | undefined | null): ReadableStream<Buffer> | null
|
||||||
|
|
||||||
export declare function signNonce(privateKey: string, nonce: string): string
|
export declare function signNonce(privateKey: string, nonce: string): string
|
||||||
|
|
||||||
|
|||||||
12
index.js
12
index.js
@ -365,11 +365,12 @@ if (!nativeBinding || process.env.NAPI_RS_FORCE_WASI) {
|
|||||||
|
|
||||||
if (!nativeBinding) {
|
if (!nativeBinding) {
|
||||||
if (loadErrors.length > 0) {
|
if (loadErrors.length > 0) {
|
||||||
// TODO Link to documentation with potential fixes
|
throw new Error(
|
||||||
// - The package owner could build/publish bindings for this arch
|
`Cannot find native binding. ` +
|
||||||
// - The user may need to bundle the correct files
|
`npm has a bug related to optional dependencies (https://github.com/npm/cli/issues/4828). ` +
|
||||||
// - The user may need to re-install node_modules to get new packages
|
'Please try `npm i` again after removing both package-lock.json and node_modules directory.',
|
||||||
throw new Error('Failed to load native binding', { cause: loadErrors })
|
{ cause: loadErrors }
|
||||||
|
)
|
||||||
}
|
}
|
||||||
throw new Error(`Failed to load native binding`)
|
throw new Error(`Failed to load native binding`)
|
||||||
}
|
}
|
||||||
@ -381,6 +382,7 @@ module.exports.generateManifest = nativeBinding.generateManifest
|
|||||||
module.exports.generateRootCa = nativeBinding.generateRootCa
|
module.exports.generateRootCa = nativeBinding.generateRootCa
|
||||||
module.exports.hasBackendForPath = nativeBinding.hasBackendForPath
|
module.exports.hasBackendForPath = nativeBinding.hasBackendForPath
|
||||||
module.exports.listFiles = nativeBinding.listFiles
|
module.exports.listFiles = nativeBinding.listFiles
|
||||||
|
module.exports.peekFile = nativeBinding.peekFile
|
||||||
module.exports.readFile = nativeBinding.readFile
|
module.exports.readFile = nativeBinding.readFile
|
||||||
module.exports.signNonce = nativeBinding.signNonce
|
module.exports.signNonce = nativeBinding.signNonce
|
||||||
module.exports.verifyClientCertificate = nativeBinding.verifyClientCertificate
|
module.exports.verifyClientCertificate = nativeBinding.verifyClientCertificate
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@drop-oss/droplet",
|
"name": "@drop-oss/droplet",
|
||||||
"version": "1.3.0",
|
"version": "1.5.3",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"types": "index.d.ts",
|
"types": "index.d.ts",
|
||||||
"napi": {
|
"napi": {
|
||||||
@ -22,7 +22,7 @@
|
|||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@napi-rs/cli": "3.0.0-alpha.80",
|
"@napi-rs/cli": "3.0.0-alpha.91",
|
||||||
"@types/node": "^22.13.10",
|
"@types/node": "^22.13.10",
|
||||||
"ava": "^6.2.0"
|
"ava": "^6.2.0"
|
||||||
},
|
},
|
||||||
|
|||||||
26
patches/rawzip+0.2.0.patch
Normal file
26
patches/rawzip+0.2.0.patch
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
diff --git a/src/archive.rs b/src/archive.rs
|
||||||
|
index 1203015..837c405 100644
|
||||||
|
--- a/src/archive.rs
|
||||||
|
+++ b/src/archive.rs
|
||||||
|
@@ -275,7 +275,7 @@ impl<'data> Iterator for ZipSliceEntries<'data> {
|
||||||
|
/// ```
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct ZipArchive<R> {
|
||||||
|
- pub(crate) reader: R,
|
||||||
|
+ pub reader: R,
|
||||||
|
pub(crate) comment: ZipString,
|
||||||
|
pub(crate) eocd: EndOfCentralDirectory,
|
||||||
|
}
|
||||||
|
@@ -431,9 +431,9 @@ where
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct ZipEntry<'archive, R> {
|
||||||
|
archive: &'archive ZipArchive<R>,
|
||||||
|
- body_offset: u64,
|
||||||
|
- body_end_offset: u64,
|
||||||
|
- entry: ZipArchiveEntryWayfinder,
|
||||||
|
+ pub body_offset: u64,
|
||||||
|
+ pub body_end_offset: u64,
|
||||||
|
+ pub entry: ZipArchiveEntryWayfinder,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'archive, R> ZipEntry<'archive, R>
|
||||||
@ -1,181 +0,0 @@
|
|||||||
#[cfg(unix)]
|
|
||||||
use std::os::unix::fs::PermissionsExt;
|
|
||||||
use std::{
|
|
||||||
fs::{self, metadata, File},
|
|
||||||
io::{self, BufReader, ErrorKind, Read, Seek},
|
|
||||||
path::{Path, PathBuf},
|
|
||||||
task::Poll,
|
|
||||||
};
|
|
||||||
|
|
||||||
use napi::{
|
|
||||||
bindgen_prelude::*,
|
|
||||||
tokio_stream::{Stream, StreamExt},
|
|
||||||
};
|
|
||||||
use tokio::io::{AsyncRead, AsyncReadExt, AsyncSeekExt, Take};
|
|
||||||
use tokio_util::{
|
|
||||||
bytes::BytesMut,
|
|
||||||
codec::{BytesCodec, FramedRead},
|
|
||||||
};
|
|
||||||
|
|
||||||
fn _list_files(vec: &mut Vec<PathBuf>, path: &Path) {
|
|
||||||
if metadata(path).unwrap().is_dir() {
|
|
||||||
let paths = fs::read_dir(path).unwrap();
|
|
||||||
for path_result in paths {
|
|
||||||
let full_path = path_result.unwrap().path();
|
|
||||||
if metadata(&full_path).unwrap().is_dir() {
|
|
||||||
_list_files(vec, &full_path);
|
|
||||||
} else {
|
|
||||||
vec.push(full_path);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub struct VersionFile {
|
|
||||||
pub relative_filename: String,
|
|
||||||
pub permission: u32,
|
|
||||||
}
|
|
||||||
|
|
||||||
pub trait VersionBackend: 'static {
|
|
||||||
fn list_files(&self, path: &Path) -> Vec<VersionFile>;
|
|
||||||
fn reader(&self, file: &VersionFile) -> Option<File>;
|
|
||||||
}
|
|
||||||
|
|
||||||
pub struct PathVersionBackend {
|
|
||||||
pub base_dir: PathBuf,
|
|
||||||
}
|
|
||||||
impl VersionBackend for PathVersionBackend {
|
|
||||||
fn list_files(&self, path: &Path) -> Vec<VersionFile> {
|
|
||||||
let mut vec = Vec::new();
|
|
||||||
_list_files(&mut vec, path);
|
|
||||||
|
|
||||||
let mut results = Vec::new();
|
|
||||||
|
|
||||||
for pathbuf in vec.iter() {
|
|
||||||
let file = File::open(pathbuf.clone()).unwrap();
|
|
||||||
let relative = pathbuf.strip_prefix(path).unwrap();
|
|
||||||
let metadata = file.try_clone().unwrap().metadata().unwrap();
|
|
||||||
let permission_object = metadata.permissions();
|
|
||||||
let permissions = {
|
|
||||||
let perm: u32;
|
|
||||||
#[cfg(target_family = "unix")]
|
|
||||||
{
|
|
||||||
perm = permission_object.mode();
|
|
||||||
}
|
|
||||||
#[cfg(not(target_family = "unix"))]
|
|
||||||
{
|
|
||||||
perm = 0
|
|
||||||
}
|
|
||||||
perm
|
|
||||||
};
|
|
||||||
|
|
||||||
results.push(VersionFile {
|
|
||||||
relative_filename: relative.to_string_lossy().to_string(),
|
|
||||||
permission: permissions,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
results
|
|
||||||
}
|
|
||||||
|
|
||||||
fn reader(&self, file: &VersionFile) -> Option<File> {
|
|
||||||
let file = File::open(self.base_dir.join(file.relative_filename.clone())).ok()?;
|
|
||||||
|
|
||||||
return Some(file);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Todo implementation for archives
|
|
||||||
// Split into a separate impl for each type of archive
|
|
||||||
pub struct ArchiveVersionBackend {}
|
|
||||||
impl VersionBackend for ArchiveVersionBackend {
|
|
||||||
fn list_files(&self, path: &Path) -> Vec<VersionFile> {
|
|
||||||
todo!()
|
|
||||||
}
|
|
||||||
|
|
||||||
fn reader(&self, file: &VersionFile) -> Option<File> {
|
|
||||||
todo!()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn create_backend_for_path(path: &Path) -> Option<Box<(dyn VersionBackend)>> {
|
|
||||||
let is_directory = path.is_dir();
|
|
||||||
if is_directory {
|
|
||||||
return Some(Box::new(PathVersionBackend {
|
|
||||||
base_dir: path.to_path_buf(),
|
|
||||||
}));
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
Insert checks for whatever backend you like
|
|
||||||
*/
|
|
||||||
|
|
||||||
None
|
|
||||||
}
|
|
||||||
|
|
||||||
#[napi]
|
|
||||||
pub fn has_backend_for_path(path: String) -> bool {
|
|
||||||
let path = Path::new(&path);
|
|
||||||
|
|
||||||
let has_backend = create_backend_for_path(path).is_some();
|
|
||||||
|
|
||||||
has_backend
|
|
||||||
}
|
|
||||||
|
|
||||||
#[napi]
|
|
||||||
pub fn list_files(path: String) -> Vec<String> {
|
|
||||||
let path = Path::new(&path);
|
|
||||||
let backend = create_backend_for_path(path).unwrap();
|
|
||||||
let files = backend.list_files(path);
|
|
||||||
files.into_iter().map(|e| e.relative_filename).collect()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[napi]
|
|
||||||
pub fn read_file(
|
|
||||||
path: String,
|
|
||||||
sub_path: String,
|
|
||||||
env: &Env,
|
|
||||||
start: Option<u32>,
|
|
||||||
end: Option<u32>
|
|
||||||
) -> Option<ReadableStream<'static, BufferSlice<'static>>> {
|
|
||||||
let path = Path::new(&path);
|
|
||||||
let backend = create_backend_for_path(path).unwrap();
|
|
||||||
let version_file = VersionFile {
|
|
||||||
relative_filename: sub_path,
|
|
||||||
permission: 0, // Shouldn't matter
|
|
||||||
};
|
|
||||||
// Use `?` operator for cleaner error propagation from `Option`
|
|
||||||
let mut reader = backend.reader(&version_file)?;
|
|
||||||
|
|
||||||
// Can't do this in tokio because it requires a .await, which we can't do here
|
|
||||||
if let Some(start) = start {
|
|
||||||
reader.seek(io::SeekFrom::Start(start as u64)).unwrap();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Convert std::fs::File to tokio::fs::File for async operations
|
|
||||||
let reader = tokio::fs::File::from_std(reader);
|
|
||||||
|
|
||||||
|
|
||||||
let boxed_reader: Box<dyn AsyncRead + Send + Unpin> = match end {
|
|
||||||
Some(end_val) => Box::new(reader.take(end_val as u64)),
|
|
||||||
None => Box::new(reader),
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Create a FramedRead stream with BytesCodec for chunking
|
|
||||||
|
|
||||||
let stream = FramedRead::new(boxed_reader, BytesCodec::new())
|
|
||||||
// Use StreamExt::map to transform each Result item
|
|
||||||
.map(|result_item| {
|
|
||||||
result_item
|
|
||||||
// Apply Result::map to transform Ok(BytesMut) to Ok(Vec<u8>)
|
|
||||||
.map(|bytes| bytes.to_vec())
|
|
||||||
// Apply Result::map_err to transform Err(std::io::Error) to Err(napi::Error)
|
|
||||||
.map_err(|e| napi::Error::from(e)) // napi::Error implements From<tokio::io::Error>
|
|
||||||
});
|
|
||||||
// Create the napi-rs ReadableStream from the tokio_stream::Stream
|
|
||||||
// The unwrap() here means if stream creation fails, it will panic.
|
|
||||||
// For a production system, consider returning Result<Option<...>> and handling this.
|
|
||||||
Some(ReadableStream::create_with_stream_bytes(env, stream).unwrap())
|
|
||||||
}
|
|
||||||
@ -1,8 +1,9 @@
|
|||||||
#![deny(clippy::all)]
|
#![deny(clippy::all)]
|
||||||
|
#![feature(trait_alias)]
|
||||||
|
|
||||||
pub mod file_utils;
|
|
||||||
pub mod manifest;
|
pub mod manifest;
|
||||||
pub mod ssl;
|
pub mod ssl;
|
||||||
|
pub mod version;
|
||||||
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate napi_derive;
|
extern crate napi_derive;
|
||||||
|
|||||||
@ -1,19 +1,20 @@
|
|||||||
use std::{
|
use std::{
|
||||||
collections::HashMap, fs::File, io::{BufRead, BufReader}, path::Path, rc::Rc, sync::Arc, thread
|
collections::HashMap,
|
||||||
|
io::{BufRead, BufReader},
|
||||||
|
path::Path,
|
||||||
|
sync::Arc,
|
||||||
|
thread,
|
||||||
};
|
};
|
||||||
|
|
||||||
#[cfg(unix)]
|
|
||||||
use std::os::unix::fs::PermissionsExt;
|
|
||||||
|
|
||||||
use napi::{
|
use napi::{
|
||||||
bindgen_prelude::Function,
|
|
||||||
threadsafe_function::{ThreadsafeFunction, ThreadsafeFunctionCallMode},
|
threadsafe_function::{ThreadsafeFunction, ThreadsafeFunctionCallMode},
|
||||||
Env, Error, Result,
|
Result,
|
||||||
};
|
};
|
||||||
use serde_json::json;
|
use serde_json::json;
|
||||||
use uuid::Uuid;
|
use uuid::Uuid;
|
||||||
|
|
||||||
use crate::file_utils::create_backend_for_path;
|
use crate::version::utils::create_backend_for_path;
|
||||||
|
|
||||||
|
|
||||||
const CHUNK_SIZE: usize = 1024 * 1024 * 64;
|
const CHUNK_SIZE: usize = 1024 * 1024 * 64;
|
||||||
|
|
||||||
@ -43,8 +44,8 @@ pub fn generate_manifest(
|
|||||||
) -> Result<(), String> {
|
) -> Result<(), String> {
|
||||||
thread::spawn(move || {
|
thread::spawn(move || {
|
||||||
let base_dir = Path::new(&dir);
|
let base_dir = Path::new(&dir);
|
||||||
let backend = create_backend_for_path(base_dir).unwrap();
|
let mut backend = create_backend_for_path(base_dir).unwrap();
|
||||||
let files = backend.list_files(base_dir);
|
let files = backend.list_files();
|
||||||
|
|
||||||
// Filepath to chunk data
|
// Filepath to chunk data
|
||||||
let mut chunks: HashMap<String, ChunkData> = HashMap::new();
|
let mut chunks: HashMap<String, ChunkData> = HashMap::new();
|
||||||
@ -53,7 +54,7 @@ pub fn generate_manifest(
|
|||||||
let mut i: i32 = 0;
|
let mut i: i32 = 0;
|
||||||
|
|
||||||
for version_file in files {
|
for version_file in files {
|
||||||
let mut raw_reader= backend.reader(&version_file).unwrap();
|
let raw_reader= backend.reader(&version_file).unwrap();
|
||||||
let mut reader = BufReader::with_capacity(CHUNK_SIZE, raw_reader);
|
let mut reader = BufReader::with_capacity(CHUNK_SIZE, raw_reader);
|
||||||
|
|
||||||
let mut chunk_data = ChunkData {
|
let mut chunk_data = ChunkData {
|
||||||
|
|||||||
151
src/version/backends.rs
Normal file
151
src/version/backends.rs
Normal file
@ -0,0 +1,151 @@
|
|||||||
|
use core::arch;
|
||||||
|
#[cfg(unix)]
|
||||||
|
use std::os::unix::fs::PermissionsExt;
|
||||||
|
use std::{
|
||||||
|
fs::File,
|
||||||
|
io::{self, Read, Seek},
|
||||||
|
path::PathBuf,
|
||||||
|
pin::Pin,
|
||||||
|
rc::Rc,
|
||||||
|
sync::Arc,
|
||||||
|
};
|
||||||
|
|
||||||
|
use rawzip::{
|
||||||
|
FileReader, ReaderAt, ZipArchive, ZipArchiveEntryWayfinder, ZipEntry, RECOMMENDED_BUFFER_SIZE,
|
||||||
|
};
|
||||||
|
|
||||||
|
use crate::version::{
|
||||||
|
types::{MinimumFileObject, Skippable, VersionBackend, VersionFile},
|
||||||
|
utils::_list_files,
|
||||||
|
};
|
||||||
|
|
||||||
|
pub struct PathVersionBackend {
|
||||||
|
pub base_dir: PathBuf,
|
||||||
|
}
|
||||||
|
impl VersionBackend for PathVersionBackend {
|
||||||
|
fn list_files(&mut self) -> Vec<VersionFile> {
|
||||||
|
let mut vec = Vec::new();
|
||||||
|
_list_files(&mut vec, &self.base_dir);
|
||||||
|
|
||||||
|
let mut results = Vec::new();
|
||||||
|
|
||||||
|
for pathbuf in vec.iter() {
|
||||||
|
let file = File::open(pathbuf.clone()).unwrap();
|
||||||
|
let relative = pathbuf.strip_prefix(self.base_dir.clone()).unwrap();
|
||||||
|
let metadata = file.try_clone().unwrap().metadata().unwrap();
|
||||||
|
let permission_object = metadata.permissions();
|
||||||
|
let permissions = {
|
||||||
|
let perm: u32;
|
||||||
|
#[cfg(target_family = "unix")]
|
||||||
|
{
|
||||||
|
perm = permission_object.mode();
|
||||||
|
}
|
||||||
|
#[cfg(not(target_family = "unix"))]
|
||||||
|
{
|
||||||
|
perm = 0
|
||||||
|
}
|
||||||
|
perm
|
||||||
|
};
|
||||||
|
|
||||||
|
results.push(VersionFile {
|
||||||
|
relative_filename: relative.to_string_lossy().to_string(),
|
||||||
|
permission: permissions,
|
||||||
|
size: metadata.len(),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
results
|
||||||
|
}
|
||||||
|
|
||||||
|
fn reader(&mut self, file: &VersionFile) -> Option<Box<(dyn MinimumFileObject + 'static)>> {
|
||||||
|
let file = File::open(self.base_dir.join(file.relative_filename.clone())).ok()?;
|
||||||
|
|
||||||
|
return Some(Box::new(file));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct ZipVersionBackend {
|
||||||
|
archive: Arc<ZipArchive<FileReader>>,
|
||||||
|
}
|
||||||
|
impl ZipVersionBackend {
|
||||||
|
pub fn new(archive: File) -> Self {
|
||||||
|
let archive = ZipArchive::from_file(archive, &mut [0u8; RECOMMENDED_BUFFER_SIZE]).unwrap();
|
||||||
|
Self {
|
||||||
|
archive: Arc::new(archive),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn new_entry(&self, entry: ZipEntry<'_, FileReader>) -> ZipFileWrapper {
|
||||||
|
ZipFileWrapper {
|
||||||
|
archive: self.archive.clone(),
|
||||||
|
wayfinder: entry.entry,
|
||||||
|
offset: entry.body_offset,
|
||||||
|
end_offset: entry.body_end_offset,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct ZipFileWrapper {
|
||||||
|
pub archive: Arc<ZipArchive<FileReader>>,
|
||||||
|
wayfinder: ZipArchiveEntryWayfinder,
|
||||||
|
offset: u64,
|
||||||
|
end_offset: u64,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Read for ZipFileWrapper {
|
||||||
|
fn read(&mut self, buf: &mut [u8]) -> std::io::Result<usize> {
|
||||||
|
let read_size = buf.len().min((self.end_offset - self.offset) as usize);
|
||||||
|
let read = self
|
||||||
|
.archive
|
||||||
|
.reader
|
||||||
|
.read_at(&mut buf[..read_size], self.offset)?;
|
||||||
|
self.offset += read as u64;
|
||||||
|
Ok(read)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
impl Skippable for ZipFileWrapper {
|
||||||
|
fn skip(&mut self, amount: u64) {
|
||||||
|
self.offset += amount;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
impl MinimumFileObject for ZipFileWrapper {}
|
||||||
|
|
||||||
|
impl VersionBackend for ZipVersionBackend {
|
||||||
|
fn list_files(&mut self) -> Vec<VersionFile> {
|
||||||
|
let mut results = Vec::new();
|
||||||
|
let read_buffer = &mut [0u8; RECOMMENDED_BUFFER_SIZE];
|
||||||
|
let mut budget_iterator = self.archive.entries(read_buffer);
|
||||||
|
while let Some(entry) = budget_iterator.next_entry().unwrap() {
|
||||||
|
if entry.is_dir() {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
results.push(VersionFile {
|
||||||
|
relative_filename: entry.file_safe_path().unwrap().to_string(),
|
||||||
|
permission: 744, // apparently ZIPs with permissions are not supported by this library, so we let the owner do anything
|
||||||
|
size: entry.uncompressed_size_hint(),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
results
|
||||||
|
}
|
||||||
|
|
||||||
|
fn reader(&mut self, file: &VersionFile) -> Option<Box<(dyn MinimumFileObject)>> {
|
||||||
|
let read_buffer = &mut [0u8; RECOMMENDED_BUFFER_SIZE];
|
||||||
|
let mut entries = self.archive.entries(read_buffer);
|
||||||
|
let entry = loop {
|
||||||
|
if let Some(v) = entries.next_entry().unwrap() {
|
||||||
|
if v.file_safe_path().unwrap().to_string() == file.relative_filename {
|
||||||
|
break Some(v);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
break None;
|
||||||
|
}
|
||||||
|
}?;
|
||||||
|
|
||||||
|
let wayfinder = entry.wayfinder();
|
||||||
|
let local_entry = self.archive.get_entry(wayfinder).unwrap();
|
||||||
|
|
||||||
|
let wrapper = self.new_entry(local_entry);
|
||||||
|
|
||||||
|
Some(Box::new(wrapper))
|
||||||
|
}
|
||||||
|
}
|
||||||
3
src/version/mod.rs
Normal file
3
src/version/mod.rs
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
pub mod utils;
|
||||||
|
pub mod types;
|
||||||
|
pub mod backends;
|
||||||
52
src/version/types.rs
Normal file
52
src/version/types.rs
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
use std::{
|
||||||
|
fmt::Debug, io::{Read, Seek, SeekFrom}
|
||||||
|
};
|
||||||
|
|
||||||
|
use tokio::io::{self, AsyncRead};
|
||||||
|
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct VersionFile {
|
||||||
|
pub relative_filename: String,
|
||||||
|
pub permission: u32,
|
||||||
|
pub size: u64,
|
||||||
|
}
|
||||||
|
|
||||||
|
pub trait Skippable {
|
||||||
|
fn skip(&mut self, amount: u64);
|
||||||
|
}
|
||||||
|
impl<T> Skippable for T
|
||||||
|
where
|
||||||
|
T: Seek,
|
||||||
|
{
|
||||||
|
fn skip(&mut self, amount: u64) {
|
||||||
|
self.seek(SeekFrom::Start(amount)).unwrap();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub trait MinimumFileObject: Read + Send + Skippable {}
|
||||||
|
impl<T: Read + Send + Seek> MinimumFileObject for T {}
|
||||||
|
|
||||||
|
// Intentionally not a generic, because of types in read_file
|
||||||
|
pub struct ReadToAsyncRead {
|
||||||
|
pub inner: Box<(dyn Read + Send)>,
|
||||||
|
pub backend: Box<(dyn VersionBackend + Send)>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl AsyncRead for ReadToAsyncRead {
|
||||||
|
fn poll_read(
|
||||||
|
mut self: std::pin::Pin<&mut Self>,
|
||||||
|
_cx: &mut std::task::Context<'_>,
|
||||||
|
buf: &mut tokio::io::ReadBuf<'_>,
|
||||||
|
) -> std::task::Poll<io::Result<()>> {
|
||||||
|
let mut read_buf = [0u8; 8192];
|
||||||
|
let var_name = self.inner.read(&mut read_buf).unwrap();
|
||||||
|
let amount = var_name;
|
||||||
|
buf.put_slice(&read_buf[0..amount]);
|
||||||
|
std::task::Poll::Ready(Ok(()))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub trait VersionBackend {
|
||||||
|
fn list_files(&mut self) -> Vec<VersionFile>;
|
||||||
|
fn reader(&mut self, file: &VersionFile) -> Option<Box<(dyn MinimumFileObject)>>;
|
||||||
|
}
|
||||||
131
src/version/utils.rs
Normal file
131
src/version/utils.rs
Normal file
@ -0,0 +1,131 @@
|
|||||||
|
use std::{
|
||||||
|
fs::{self, metadata, File},
|
||||||
|
io::Read,
|
||||||
|
path::{Path, PathBuf},
|
||||||
|
};
|
||||||
|
|
||||||
|
use napi::{bindgen_prelude::*, tokio_stream::StreamExt};
|
||||||
|
use tokio_util::codec::{BytesCodec, FramedRead};
|
||||||
|
|
||||||
|
use crate::version::{
|
||||||
|
backends::{PathVersionBackend, ZipVersionBackend},
|
||||||
|
types::{ReadToAsyncRead, VersionBackend, VersionFile},
|
||||||
|
};
|
||||||
|
|
||||||
|
pub fn _list_files(vec: &mut Vec<PathBuf>, path: &Path) {
|
||||||
|
if metadata(path).unwrap().is_dir() {
|
||||||
|
let paths = fs::read_dir(path).unwrap();
|
||||||
|
for path_result in paths {
|
||||||
|
let full_path = path_result.unwrap().path();
|
||||||
|
if metadata(&full_path).unwrap().is_dir() {
|
||||||
|
_list_files(vec, &full_path);
|
||||||
|
} else {
|
||||||
|
vec.push(full_path);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn create_backend_for_path<'a>(path: &Path) -> Option<Box<(dyn VersionBackend + Send + 'a)>> {
|
||||||
|
let is_directory = path.is_dir();
|
||||||
|
if is_directory {
|
||||||
|
return Some(Box::new(PathVersionBackend {
|
||||||
|
base_dir: path.to_path_buf(),
|
||||||
|
}));
|
||||||
|
};
|
||||||
|
|
||||||
|
if path.to_string_lossy().ends_with(".zip") {
|
||||||
|
let f = File::open(path.to_path_buf()).unwrap();
|
||||||
|
return Some(Box::new(ZipVersionBackend::new(f)));
|
||||||
|
}
|
||||||
|
|
||||||
|
None
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub fn has_backend_for_path(path: String) -> bool {
|
||||||
|
let path = Path::new(&path);
|
||||||
|
|
||||||
|
let has_backend = create_backend_for_path(path).is_some();
|
||||||
|
|
||||||
|
has_backend
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub fn list_files(path: String) -> Result<Vec<String>> {
|
||||||
|
let path = Path::new(&path);
|
||||||
|
let mut backend =
|
||||||
|
create_backend_for_path(path).ok_or(napi::Error::from_reason("No backend for path"))?;
|
||||||
|
let files = backend.list_files();
|
||||||
|
Ok(files.into_iter().map(|e| e.relative_filename).collect())
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is inefficient, but is used in attempt to keep the interface simple
|
||||||
|
*/
|
||||||
|
#[napi]
|
||||||
|
pub fn peek_file(path: String, sub_path: String) -> Result<u32> {
|
||||||
|
let path = Path::new(&path);
|
||||||
|
let mut backend =
|
||||||
|
create_backend_for_path(path).ok_or(napi::Error::from_reason("No backend for path"))?;
|
||||||
|
let files = backend.list_files();
|
||||||
|
|
||||||
|
let file = files
|
||||||
|
.iter()
|
||||||
|
.find(|e| e.relative_filename == sub_path)
|
||||||
|
.ok_or(napi::Error::from_reason("Can't find file to peek"))?;
|
||||||
|
return Ok(file.size.try_into().unwrap());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub fn read_file(
|
||||||
|
path: String,
|
||||||
|
sub_path: String,
|
||||||
|
env: &Env,
|
||||||
|
start: Option<u32>,
|
||||||
|
end: Option<u32>,
|
||||||
|
) -> Option<ReadableStream<'_, BufferSlice<'_>>> {
|
||||||
|
let path = Path::new(&path);
|
||||||
|
let mut backend = create_backend_for_path(path).unwrap();
|
||||||
|
let version_file = VersionFile {
|
||||||
|
relative_filename: sub_path,
|
||||||
|
permission: 0, // Shouldn't matter
|
||||||
|
size: 0, // Shouldn't matter
|
||||||
|
};
|
||||||
|
// Use `?` operator for cleaner error propagation from `Option`
|
||||||
|
let mut reader = backend.reader(&version_file)?;
|
||||||
|
|
||||||
|
// Skip the 'start' amount of bytes without seek
|
||||||
|
if let Some(skip) = start {
|
||||||
|
reader.skip(skip.into());
|
||||||
|
// io::copy(&mut reader.by_ref().take(skip.into()), &mut io::sink()).unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
let async_reader = if let Some(limit) = end {
|
||||||
|
let amount = limit - start.or(Some(0)).unwrap();
|
||||||
|
ReadToAsyncRead {
|
||||||
|
inner: Box::new(reader.take(amount.into())),
|
||||||
|
backend,
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
ReadToAsyncRead {
|
||||||
|
inner: reader,
|
||||||
|
backend,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Create a FramedRead stream with BytesCodec for chunking
|
||||||
|
let stream = FramedRead::new(async_reader, BytesCodec::new())
|
||||||
|
// Use StreamExt::map to transform each Result item
|
||||||
|
.map(|result_item| {
|
||||||
|
result_item
|
||||||
|
// Apply Result::map to transform Ok(BytesMut) to Ok(Vec<u8>)
|
||||||
|
.map(|bytes| bytes.to_vec())
|
||||||
|
// Apply Result::map_err to transform Err(std::io::Error) to Err(napi::Error)
|
||||||
|
.map_err(|e| napi::Error::from(e)) // napi::Error implements From<tokio::io::Error>
|
||||||
|
});
|
||||||
|
// Create the napi-rs ReadableStream from the tokio_stream::Stream
|
||||||
|
// The unwrap() here means if stream creation fails, it will panic.
|
||||||
|
// For a production system, consider returning Result<Option<...>> and handling this.
|
||||||
|
Some(ReadableStream::create_with_stream_bytes(env, stream).unwrap())
|
||||||
|
}
|
||||||
364
yarn.lock
364
yarn.lock
@ -9,7 +9,7 @@ __metadata:
|
|||||||
version: 0.0.0-use.local
|
version: 0.0.0-use.local
|
||||||
resolution: "@drop-oss/droplet@workspace:."
|
resolution: "@drop-oss/droplet@workspace:."
|
||||||
dependencies:
|
dependencies:
|
||||||
"@napi-rs/cli": "npm:3.0.0-alpha.80"
|
"@napi-rs/cli": "npm:3.0.0-alpha.91"
|
||||||
"@types/node": "npm:^22.13.10"
|
"@types/node": "npm:^22.13.10"
|
||||||
ava: "npm:^6.2.0"
|
ava: "npm:^6.2.0"
|
||||||
languageName: unknown
|
languageName: unknown
|
||||||
@ -43,11 +43,11 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@inquirer/checkbox@npm:^4.1.8":
|
"@inquirer/checkbox@npm:^4.1.9":
|
||||||
version: 4.1.8
|
version: 4.1.9
|
||||||
resolution: "@inquirer/checkbox@npm:4.1.8"
|
resolution: "@inquirer/checkbox@npm:4.1.9"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@inquirer/core": "npm:^10.1.13"
|
"@inquirer/core": "npm:^10.1.14"
|
||||||
"@inquirer/figures": "npm:^1.0.12"
|
"@inquirer/figures": "npm:^1.0.12"
|
||||||
"@inquirer/type": "npm:^3.0.7"
|
"@inquirer/type": "npm:^3.0.7"
|
||||||
ansi-escapes: "npm:^4.3.2"
|
ansi-escapes: "npm:^4.3.2"
|
||||||
@ -57,28 +57,28 @@ __metadata:
|
|||||||
peerDependenciesMeta:
|
peerDependenciesMeta:
|
||||||
"@types/node":
|
"@types/node":
|
||||||
optional: true
|
optional: true
|
||||||
checksum: 10c0/6d726420b179c55b2f0001aaf6e339fa56e9e939afcbda31c386ab2e5d029ef6f2d392ec99c6a6950af1776a399791bbb88a635e4d047f1170b2ed8c5bba1e4c
|
checksum: 10c0/d1a93c31f3dad37f060bfdb6a8ba53f2cd36cfca7766c464c34aa95ecf691956c32be2f5b71cc8633ed7581452a04ab7b3a025d662270460d21b25069651ed42
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@inquirer/confirm@npm:^5.1.12":
|
"@inquirer/confirm@npm:^5.1.13":
|
||||||
version: 5.1.12
|
version: 5.1.13
|
||||||
resolution: "@inquirer/confirm@npm:5.1.12"
|
resolution: "@inquirer/confirm@npm:5.1.13"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@inquirer/core": "npm:^10.1.13"
|
"@inquirer/core": "npm:^10.1.14"
|
||||||
"@inquirer/type": "npm:^3.0.7"
|
"@inquirer/type": "npm:^3.0.7"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
"@types/node": ">=18"
|
"@types/node": ">=18"
|
||||||
peerDependenciesMeta:
|
peerDependenciesMeta:
|
||||||
"@types/node":
|
"@types/node":
|
||||||
optional: true
|
optional: true
|
||||||
checksum: 10c0/581aedfe8ce45e177fb4470a12f874f5162a4396636bf4140edc5812ffc8ed0d1fa7e9bbc3a7af618203089a084f489e0b32112947eedc6930a766fad992449e
|
checksum: 10c0/e09af25c4b4f51fdc7c6780e2325217515d3970a8baab3597ae27ea8d0ed68527c19b3ae95f85eeb62d880f6e8a0f3bff91277f0f46e092e993ca18ad17e4993
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@inquirer/core@npm:^10.1.13":
|
"@inquirer/core@npm:^10.1.14":
|
||||||
version: 10.1.13
|
version: 10.1.14
|
||||||
resolution: "@inquirer/core@npm:10.1.13"
|
resolution: "@inquirer/core@npm:10.1.14"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@inquirer/figures": "npm:^1.0.12"
|
"@inquirer/figures": "npm:^1.0.12"
|
||||||
"@inquirer/type": "npm:^3.0.7"
|
"@inquirer/type": "npm:^3.0.7"
|
||||||
@ -93,15 +93,15 @@ __metadata:
|
|||||||
peerDependenciesMeta:
|
peerDependenciesMeta:
|
||||||
"@types/node":
|
"@types/node":
|
||||||
optional: true
|
optional: true
|
||||||
checksum: 10c0/919208a31307297d5a07a44b9ebe69a999ce1470b31a2e1b5a04538bc36624d2053808cd6c677637a61690af09bdbdd635bd7031b64e3dd86c5b18df3ca7c3f9
|
checksum: 10c0/2553eb059201ebb182eb8e55a278ce3f2848a3abdfcf26e651b57b146f35baa19a286af0365ee5968b4459a1be93864ebf205a7af32fed8f995b394750a1d1f4
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@inquirer/editor@npm:^4.2.13":
|
"@inquirer/editor@npm:^4.2.14":
|
||||||
version: 4.2.13
|
version: 4.2.14
|
||||||
resolution: "@inquirer/editor@npm:4.2.13"
|
resolution: "@inquirer/editor@npm:4.2.14"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@inquirer/core": "npm:^10.1.13"
|
"@inquirer/core": "npm:^10.1.14"
|
||||||
"@inquirer/type": "npm:^3.0.7"
|
"@inquirer/type": "npm:^3.0.7"
|
||||||
external-editor: "npm:^3.1.0"
|
external-editor: "npm:^3.1.0"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@ -109,15 +109,15 @@ __metadata:
|
|||||||
peerDependenciesMeta:
|
peerDependenciesMeta:
|
||||||
"@types/node":
|
"@types/node":
|
||||||
optional: true
|
optional: true
|
||||||
checksum: 10c0/e1a27d75f737d7847905c14cf04d66d864eeb0f3e4cb2d36e34b51993741c5b70c22754171820c5d880a740765471455a8a98874285fd4a10b162342898f6c6b
|
checksum: 10c0/40e85b4a598f3541f96185c61f0a5ba9abf9385f28cef8b8a1f9570729bbb98f32c80e98e4ce63bd3d07d4011b770d945587d9c6eecce3b03eb2ec08bd7f37ea
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@inquirer/expand@npm:^4.0.15":
|
"@inquirer/expand@npm:^4.0.16":
|
||||||
version: 4.0.15
|
version: 4.0.16
|
||||||
resolution: "@inquirer/expand@npm:4.0.15"
|
resolution: "@inquirer/expand@npm:4.0.16"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@inquirer/core": "npm:^10.1.13"
|
"@inquirer/core": "npm:^10.1.14"
|
||||||
"@inquirer/type": "npm:^3.0.7"
|
"@inquirer/type": "npm:^3.0.7"
|
||||||
yoctocolors-cjs: "npm:^2.1.2"
|
yoctocolors-cjs: "npm:^2.1.2"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@ -125,7 +125,7 @@ __metadata:
|
|||||||
peerDependenciesMeta:
|
peerDependenciesMeta:
|
||||||
"@types/node":
|
"@types/node":
|
||||||
optional: true
|
optional: true
|
||||||
checksum: 10c0/d558e367995a38a31d830de45d1e6831b73a798d6076c7fc8bdb639d3fac947a5d15810f7336b45c7712fc0e21fe8a2728f7f594550a20b6b4a839a18f9086cb
|
checksum: 10c0/919e314c5bd86b957b491eff6aa79c990908b7898fc5d02968920be7866449d9dbf9bc33831eab922682e60b98553d753d1a3de6667fa6b1aa6443f457732713
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@ -136,41 +136,41 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@inquirer/input@npm:^4.1.12":
|
"@inquirer/input@npm:^4.2.0":
|
||||||
version: 4.1.12
|
version: 4.2.0
|
||||||
resolution: "@inquirer/input@npm:4.1.12"
|
resolution: "@inquirer/input@npm:4.2.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@inquirer/core": "npm:^10.1.13"
|
"@inquirer/core": "npm:^10.1.14"
|
||||||
"@inquirer/type": "npm:^3.0.7"
|
"@inquirer/type": "npm:^3.0.7"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
"@types/node": ">=18"
|
"@types/node": ">=18"
|
||||||
peerDependenciesMeta:
|
peerDependenciesMeta:
|
||||||
"@types/node":
|
"@types/node":
|
||||||
optional: true
|
optional: true
|
||||||
checksum: 10c0/17b59547432f54a18ec573fde96c2c13c827f04faf694fc58239ec97e993ac6af151ed2a0521029c9199a4f422742dbe5dc23c20705748eafdc7dd26c7adca3a
|
checksum: 10c0/c9b671bbb8c8079e975c9138951b7abb6b06e04a44e47286b659569080140f5f18015ba3f2d55e90c5060a313a3c3e9e115138feced7abe7a94a43190a052199
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@inquirer/number@npm:^3.0.15":
|
"@inquirer/number@npm:^3.0.16":
|
||||||
version: 3.0.15
|
version: 3.0.16
|
||||||
resolution: "@inquirer/number@npm:3.0.15"
|
resolution: "@inquirer/number@npm:3.0.16"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@inquirer/core": "npm:^10.1.13"
|
"@inquirer/core": "npm:^10.1.14"
|
||||||
"@inquirer/type": "npm:^3.0.7"
|
"@inquirer/type": "npm:^3.0.7"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
"@types/node": ">=18"
|
"@types/node": ">=18"
|
||||||
peerDependenciesMeta:
|
peerDependenciesMeta:
|
||||||
"@types/node":
|
"@types/node":
|
||||||
optional: true
|
optional: true
|
||||||
checksum: 10c0/724fc0d10611a0a9ea43280a94ed9194b8bb22d9a2af940eb37592d0cebc9e6e219edc4f79d8c176f53fd1b078543a9e4773037c7bde4b8d929a3034406eec90
|
checksum: 10c0/066230f02cd253fe26cd78493c7c20b59063c8c2de5c8f5fadcaf4eb8650efc9e6555ba7d3703cc9ba7a751663f60e62e24b4a319d9536afa7ced7459e9b2320
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@inquirer/password@npm:^4.0.15":
|
"@inquirer/password@npm:^4.0.16":
|
||||||
version: 4.0.15
|
version: 4.0.16
|
||||||
resolution: "@inquirer/password@npm:4.0.15"
|
resolution: "@inquirer/password@npm:4.0.16"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@inquirer/core": "npm:^10.1.13"
|
"@inquirer/core": "npm:^10.1.14"
|
||||||
"@inquirer/type": "npm:^3.0.7"
|
"@inquirer/type": "npm:^3.0.7"
|
||||||
ansi-escapes: "npm:^4.3.2"
|
ansi-escapes: "npm:^4.3.2"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@ -178,38 +178,38 @@ __metadata:
|
|||||||
peerDependenciesMeta:
|
peerDependenciesMeta:
|
||||||
"@types/node":
|
"@types/node":
|
||||||
optional: true
|
optional: true
|
||||||
checksum: 10c0/673d7c33dd0ee951c96f349d4fb66f8762f31c62188546da4d7af544202b638eecef6b8c78e62f43a46c72a5fa0712d94a56ed56f12e1badbb1001128bc991bd
|
checksum: 10c0/b77c57ba152b50c640cd77637d1ed23662059689546e33b235937e7e108fbbf72b9b5c61834c545f74f1d18d5c836ef5a0dc78da31ea6affe9842c3471a27325
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@inquirer/prompts@npm:^7.4.0":
|
"@inquirer/prompts@npm:^7.4.0":
|
||||||
version: 7.5.3
|
version: 7.6.0
|
||||||
resolution: "@inquirer/prompts@npm:7.5.3"
|
resolution: "@inquirer/prompts@npm:7.6.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@inquirer/checkbox": "npm:^4.1.8"
|
"@inquirer/checkbox": "npm:^4.1.9"
|
||||||
"@inquirer/confirm": "npm:^5.1.12"
|
"@inquirer/confirm": "npm:^5.1.13"
|
||||||
"@inquirer/editor": "npm:^4.2.13"
|
"@inquirer/editor": "npm:^4.2.14"
|
||||||
"@inquirer/expand": "npm:^4.0.15"
|
"@inquirer/expand": "npm:^4.0.16"
|
||||||
"@inquirer/input": "npm:^4.1.12"
|
"@inquirer/input": "npm:^4.2.0"
|
||||||
"@inquirer/number": "npm:^3.0.15"
|
"@inquirer/number": "npm:^3.0.16"
|
||||||
"@inquirer/password": "npm:^4.0.15"
|
"@inquirer/password": "npm:^4.0.16"
|
||||||
"@inquirer/rawlist": "npm:^4.1.3"
|
"@inquirer/rawlist": "npm:^4.1.4"
|
||||||
"@inquirer/search": "npm:^3.0.15"
|
"@inquirer/search": "npm:^3.0.16"
|
||||||
"@inquirer/select": "npm:^4.2.3"
|
"@inquirer/select": "npm:^4.2.4"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
"@types/node": ">=18"
|
"@types/node": ">=18"
|
||||||
peerDependenciesMeta:
|
peerDependenciesMeta:
|
||||||
"@types/node":
|
"@types/node":
|
||||||
optional: true
|
optional: true
|
||||||
checksum: 10c0/14ba6f4a3bf1610d7c46399cd8367db8da1ab8c051ab7ff55003a5b36b5121429e3995e202c08156b7b6e7d4d9d032f39add98764c5ae3a7b4b657eb4926137f
|
checksum: 10c0/a00186a71388308a1bc83bd96fef14c702b6cfa34ecd7c7cf880405295b25aefd18a3b79363d788c9c31a2aa5e30732d21467a5b716fc35cc5fd303745ff2218
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@inquirer/rawlist@npm:^4.1.3":
|
"@inquirer/rawlist@npm:^4.1.4":
|
||||||
version: 4.1.3
|
version: 4.1.4
|
||||||
resolution: "@inquirer/rawlist@npm:4.1.3"
|
resolution: "@inquirer/rawlist@npm:4.1.4"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@inquirer/core": "npm:^10.1.13"
|
"@inquirer/core": "npm:^10.1.14"
|
||||||
"@inquirer/type": "npm:^3.0.7"
|
"@inquirer/type": "npm:^3.0.7"
|
||||||
yoctocolors-cjs: "npm:^2.1.2"
|
yoctocolors-cjs: "npm:^2.1.2"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@ -217,15 +217,15 @@ __metadata:
|
|||||||
peerDependenciesMeta:
|
peerDependenciesMeta:
|
||||||
"@types/node":
|
"@types/node":
|
||||||
optional: true
|
optional: true
|
||||||
checksum: 10c0/d653e730188e6849df540186cf7cb0f37f06c64d03f075b5a617145671fb015c27aeb60adb003d1a05a925795968efff0a3ae5a737a8d04c5679aa6fdc423662
|
checksum: 10c0/2ee08bbdd982e4d565dc37b38b4f45e5a040ea1e60e3f8ec808106c1b541585e9a5c3a18f795ae2168820695ad55fb88b2e391c3a0d616a4e74620250292e2d3
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@inquirer/search@npm:^3.0.15":
|
"@inquirer/search@npm:^3.0.16":
|
||||||
version: 3.0.15
|
version: 3.0.16
|
||||||
resolution: "@inquirer/search@npm:3.0.15"
|
resolution: "@inquirer/search@npm:3.0.16"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@inquirer/core": "npm:^10.1.13"
|
"@inquirer/core": "npm:^10.1.14"
|
||||||
"@inquirer/figures": "npm:^1.0.12"
|
"@inquirer/figures": "npm:^1.0.12"
|
||||||
"@inquirer/type": "npm:^3.0.7"
|
"@inquirer/type": "npm:^3.0.7"
|
||||||
yoctocolors-cjs: "npm:^2.1.2"
|
yoctocolors-cjs: "npm:^2.1.2"
|
||||||
@ -234,15 +234,15 @@ __metadata:
|
|||||||
peerDependenciesMeta:
|
peerDependenciesMeta:
|
||||||
"@types/node":
|
"@types/node":
|
||||||
optional: true
|
optional: true
|
||||||
checksum: 10c0/32b29789e72e53a7b6cfdbc1803bd9e466c424d9f0368a145bef9e25c6fbde72af29cdd4667a785fee79de213f11fa76453f8120ea02ac5158dce259565ce7fd
|
checksum: 10c0/34330cec50dd72669cdee14a413e7b43dee0e09c8f181a86ccfbdac424b6296e39dcc3c5992168d06c8f5e4cab54644913d5281723fa7a0f454c2c3cafeea192
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@inquirer/select@npm:^4.2.3":
|
"@inquirer/select@npm:^4.2.4":
|
||||||
version: 4.2.3
|
version: 4.2.4
|
||||||
resolution: "@inquirer/select@npm:4.2.3"
|
resolution: "@inquirer/select@npm:4.2.4"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@inquirer/core": "npm:^10.1.13"
|
"@inquirer/core": "npm:^10.1.14"
|
||||||
"@inquirer/figures": "npm:^1.0.12"
|
"@inquirer/figures": "npm:^1.0.12"
|
||||||
"@inquirer/type": "npm:^3.0.7"
|
"@inquirer/type": "npm:^3.0.7"
|
||||||
ansi-escapes: "npm:^4.3.2"
|
ansi-escapes: "npm:^4.3.2"
|
||||||
@ -252,7 +252,7 @@ __metadata:
|
|||||||
peerDependenciesMeta:
|
peerDependenciesMeta:
|
||||||
"@types/node":
|
"@types/node":
|
||||||
optional: true
|
optional: true
|
||||||
checksum: 10c0/376535f50a9c2e19e27a5c81930cd1b5afa0b7d86228e5789782955a2d0a89bf5a8890a97943042e1b393094fe236ce97c9ff4bb777c9b44b22c1424f883b063
|
checksum: 10c0/8c2dff78f331a52862252ffbc2ad1b8b91cbc556c2af1e6acc5878855ffff7048bb45eefa53e0ef4fbf5310361d9986d10c2882c2355f815e05d635cab9bb679
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@ -308,22 +308,22 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@napi-rs/cli@npm:3.0.0-alpha.80":
|
"@napi-rs/cli@npm:3.0.0-alpha.91":
|
||||||
version: 3.0.0-alpha.80
|
version: 3.0.0-alpha.91
|
||||||
resolution: "@napi-rs/cli@npm:3.0.0-alpha.80"
|
resolution: "@napi-rs/cli@npm:3.0.0-alpha.91"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@inquirer/prompts": "npm:^7.4.0"
|
"@inquirer/prompts": "npm:^7.4.0"
|
||||||
"@napi-rs/cross-toolchain": "npm:^0.0.19"
|
"@napi-rs/cross-toolchain": "npm:^0.0.19"
|
||||||
"@napi-rs/wasm-tools": "npm:^0.0.3"
|
"@napi-rs/wasm-tools": "npm:^0.0.3"
|
||||||
"@octokit/rest": "npm:^21.1.1"
|
"@octokit/rest": "npm:^22.0.0"
|
||||||
clipanion: "npm:^4.0.0-rc.4"
|
clipanion: "npm:^4.0.0-rc.4"
|
||||||
colorette: "npm:^2.0.20"
|
colorette: "npm:^2.0.20"
|
||||||
debug: "npm:^4.4.0"
|
debug: "npm:^4.4.0"
|
||||||
emnapi: "npm:^1.4.0"
|
emnapi: "npm:^1.4.0"
|
||||||
|
find-up: "npm:^7.0.0"
|
||||||
js-yaml: "npm:^4.1.0"
|
js-yaml: "npm:^4.1.0"
|
||||||
lodash-es: "npm:^4.17.21"
|
lodash-es: "npm:^4.17.21"
|
||||||
semver: "npm:^7.7.1"
|
semver: "npm:^7.7.1"
|
||||||
toml: "npm:^3.0.0"
|
|
||||||
typanion: "npm:^3.14.0"
|
typanion: "npm:^3.14.0"
|
||||||
wasm-sjlj: "npm:^1.0.6"
|
wasm-sjlj: "npm:^1.0.6"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@ -337,7 +337,7 @@ __metadata:
|
|||||||
bin:
|
bin:
|
||||||
napi: ./dist/cli.js
|
napi: ./dist/cli.js
|
||||||
napi-raw: ./cli.mjs
|
napi-raw: ./cli.mjs
|
||||||
checksum: 10c0/f63928f5f4b430983c19727dc3752b8292a695cf05a1c1ed27038e07ae20e15287d422b974ddcf52b5702331026453c327273b737f213c66c71843e692ff2f9b
|
checksum: 10c0/a1e8078b47b64551f41d1386a7f462a9d34728bbe7158e9d55348889a6100d6c3c970fc7e1d7e4898fce362074515e283cd4475275eea88a1614cab66f16b12b
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@ -725,13 +725,13 @@ __metadata:
|
|||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@napi-rs/wasm-runtime@npm:^0.2.10, @napi-rs/wasm-runtime@npm:^0.2.7, @napi-rs/wasm-runtime@npm:^0.2.9":
|
"@napi-rs/wasm-runtime@npm:^0.2.10, @napi-rs/wasm-runtime@npm:^0.2.7, @napi-rs/wasm-runtime@npm:^0.2.9":
|
||||||
version: 0.2.10
|
version: 0.2.11
|
||||||
resolution: "@napi-rs/wasm-runtime@npm:0.2.10"
|
resolution: "@napi-rs/wasm-runtime@npm:0.2.11"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@emnapi/core": "npm:^1.4.3"
|
"@emnapi/core": "npm:^1.4.3"
|
||||||
"@emnapi/runtime": "npm:^1.4.3"
|
"@emnapi/runtime": "npm:^1.4.3"
|
||||||
"@tybys/wasm-util": "npm:^0.9.0"
|
"@tybys/wasm-util": "npm:^0.9.0"
|
||||||
checksum: 10c0/4dce9bbb94a8969805574e1b55fdbeb7623348190265d77f6507ba32e535610deeb53a33ba0bb8b05a6520f379d418b92e8a01c5cd7b9486b136d2c0c26be0bd
|
checksum: 10c0/049bd14c58b99fbe0967b95e9921c5503df196b59be22948d2155f17652eb305cff6728efd8685338b855da7e476dd2551fbe3a313fc2d810938f0717478441e
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@ -903,53 +903,46 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@octokit/auth-token@npm:^5.0.0":
|
"@octokit/auth-token@npm:^6.0.0":
|
||||||
version: 5.1.2
|
version: 6.0.0
|
||||||
resolution: "@octokit/auth-token@npm:5.1.2"
|
resolution: "@octokit/auth-token@npm:6.0.0"
|
||||||
checksum: 10c0/bd4952571d9c559ede1f6ef8f7756900256d19df0180db04da88886a05484c7e6a4397611422e4804465a82addc8c2daa21d0bb4f450403552ee81041a4046d1
|
checksum: 10c0/32ecc904c5f6f4e5d090bfcc679d70318690c0a0b5040cd9a25811ad9dcd44c33f2cf96b6dbee1cd56cf58fde28fb1819c01b58718aa5c971f79c822357cb5c0
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@octokit/core@npm:^6.1.4":
|
"@octokit/core@npm:^7.0.2":
|
||||||
version: 6.1.5
|
version: 7.0.2
|
||||||
resolution: "@octokit/core@npm:6.1.5"
|
resolution: "@octokit/core@npm:7.0.2"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@octokit/auth-token": "npm:^5.0.0"
|
"@octokit/auth-token": "npm:^6.0.0"
|
||||||
"@octokit/graphql": "npm:^8.2.2"
|
"@octokit/graphql": "npm:^9.0.1"
|
||||||
"@octokit/request": "npm:^9.2.3"
|
"@octokit/request": "npm:^10.0.2"
|
||||||
"@octokit/request-error": "npm:^6.1.8"
|
"@octokit/request-error": "npm:^7.0.0"
|
||||||
"@octokit/types": "npm:^14.0.0"
|
"@octokit/types": "npm:^14.0.0"
|
||||||
before-after-hook: "npm:^3.0.2"
|
before-after-hook: "npm:^4.0.0"
|
||||||
universal-user-agent: "npm:^7.0.0"
|
universal-user-agent: "npm:^7.0.0"
|
||||||
checksum: 10c0/c89ea754cc33da740fdd69fadb971b4b65c89971bba4e8ad545d3ea7aba79759ee3e195c3b72e7df78f14b8b1d392bddc56e7c385d48b5272319ea6a0246ac7c
|
checksum: 10c0/845a6ff07fcf307b4eab29119123cba698b9edcf93539a8cb4fc99b7e041573ac047d50b30cf7ebbe368fc18b29cdb9f30fdfcffb26267492d7c767d100fc25f
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@octokit/endpoint@npm:^10.1.4":
|
"@octokit/endpoint@npm:^11.0.0":
|
||||||
version: 10.1.4
|
version: 11.0.0
|
||||||
resolution: "@octokit/endpoint@npm:10.1.4"
|
resolution: "@octokit/endpoint@npm:11.0.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@octokit/types": "npm:^14.0.0"
|
"@octokit/types": "npm:^14.0.0"
|
||||||
universal-user-agent: "npm:^7.0.2"
|
universal-user-agent: "npm:^7.0.2"
|
||||||
checksum: 10c0/bf7cca71a05dc4751df658588e32642e59c98768e7509521226b997ea4837e2d16efd35c391231c76d888226f4daf80e6a9f347dee01a69f490253654dada581
|
checksum: 10c0/ba929128af5327393fdb3a31f416277ae3036a44566d35955a4eddd484a15b5ddc6abe219a56355f3313c7197d59f4e8bf574a4f0a8680bc1c8725b88433d391
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@octokit/graphql@npm:^8.2.2":
|
"@octokit/graphql@npm:^9.0.1":
|
||||||
version: 8.2.2
|
version: 9.0.1
|
||||||
resolution: "@octokit/graphql@npm:8.2.2"
|
resolution: "@octokit/graphql@npm:9.0.1"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@octokit/request": "npm:^9.2.3"
|
"@octokit/request": "npm:^10.0.2"
|
||||||
"@octokit/types": "npm:^14.0.0"
|
"@octokit/types": "npm:^14.0.0"
|
||||||
universal-user-agent: "npm:^7.0.0"
|
universal-user-agent: "npm:^7.0.0"
|
||||||
checksum: 10c0/29cd5af5ed04e416d28798a11907ab861dc73c0af47f8c9c3f4183d81d2e77d88228643825538acc81e7015f78d891f84107929019a673b06a6b38ccea6a24e0
|
checksum: 10c0/d80ec923b7624e8a7c84430a287ff18da3c77058e3166ce8e9a67950af00e88767f85d973b4032fc837b67b72d02b323aff2d8f7eeae1ae463bde1a51ddcb83d
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@octokit/openapi-types@npm:^24.2.0":
|
|
||||||
version: 24.2.0
|
|
||||||
resolution: "@octokit/openapi-types@npm:24.2.0"
|
|
||||||
checksum: 10c0/8f47918b35e9b7f6109be6f7c8fc3a64ad13a48233112b29e92559e64a564b810eb3ebf81b4cd0af1bb2989d27b9b95cca96e841ec4e23a3f68703cefe62fd9e
|
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@ -960,81 +953,72 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@octokit/plugin-paginate-rest@npm:^11.4.2":
|
"@octokit/plugin-paginate-rest@npm:^13.0.1":
|
||||||
version: 11.6.0
|
version: 13.1.1
|
||||||
resolution: "@octokit/plugin-paginate-rest@npm:11.6.0"
|
resolution: "@octokit/plugin-paginate-rest@npm:13.1.1"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@octokit/types": "npm:^13.10.0"
|
"@octokit/types": "npm:^14.1.0"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
"@octokit/core": ">=6"
|
"@octokit/core": ">=6"
|
||||||
checksum: 10c0/f5c8751a1cd08f972a84d0e0534d1f72c178648c64ec2b57f8d924a04b81cc616338e397fb1400c02d7ffda7b6147835cbdbae07a2673f963217d2d59768daaa
|
checksum: 10c0/88d80608881df88f8e832856e9279ac1c1af30ced9adb7c847f4d120b4bb308c2ab9d791ffd4c9585759e57a938798b4c3f2f988a389f2d78a61aaaebc36ffa7
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@octokit/plugin-request-log@npm:^5.3.1":
|
"@octokit/plugin-request-log@npm:^6.0.0":
|
||||||
version: 5.3.1
|
version: 6.0.0
|
||||||
resolution: "@octokit/plugin-request-log@npm:5.3.1"
|
resolution: "@octokit/plugin-request-log@npm:6.0.0"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
"@octokit/core": ">=6"
|
"@octokit/core": ">=6"
|
||||||
checksum: 10c0/2f959934b8285cf39a1d1d0b92ec881b3ae171ae74738225f87b89381afd72a32bc7ea9c04d2dcee74f74ad24c22cce0c5f3e5b4333d531ea67b985e4ee90cb0
|
checksum: 10c0/40e46ad0c77235742d0bf698ab4e17df1ae06e0d7824ffc5867ed71e27de860875adb73d89629b823fe8647459a8f262c26ed1aa6ee374873fa94095f37df0bb
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@octokit/plugin-rest-endpoint-methods@npm:^13.3.0":
|
"@octokit/plugin-rest-endpoint-methods@npm:^16.0.0":
|
||||||
version: 13.5.0
|
version: 16.0.0
|
||||||
resolution: "@octokit/plugin-rest-endpoint-methods@npm:13.5.0"
|
resolution: "@octokit/plugin-rest-endpoint-methods@npm:16.0.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@octokit/types": "npm:^13.10.0"
|
"@octokit/types": "npm:^14.1.0"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
"@octokit/core": ">=6"
|
"@octokit/core": ">=6"
|
||||||
checksum: 10c0/0dd5fcdc01ac82abeab26fa32fd1c504732918bc70ad8e16924dd4d155dfd4bc8b57f2326c5012276885b9d59be3eb1e8d0b2576f5915a3b3343f26359cdba5e
|
checksum: 10c0/6cfe068dbd550bd5914374e65b89482b9deac29f6c26bf02ab6298e956d95b62fc15a2a49dfc6ff76f5938c6ff7fdfe5b7eccdb7551eaff8b1daf7394bc946cb
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@octokit/request-error@npm:^6.1.8":
|
"@octokit/request-error@npm:^7.0.0":
|
||||||
version: 6.1.8
|
version: 7.0.0
|
||||||
resolution: "@octokit/request-error@npm:6.1.8"
|
resolution: "@octokit/request-error@npm:7.0.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@octokit/types": "npm:^14.0.0"
|
"@octokit/types": "npm:^14.0.0"
|
||||||
checksum: 10c0/02aa5bfebb5b1b9e152558b4a6f4f7dcb149b41538778ffe0fce3395fd0da5c0862311a78e94723435667581b2a58a7cefa458cf7aa19ae2948ae419276f7ee1
|
checksum: 10c0/e52bdd832a0187d66b20da5716c374d028f63d824908a9e16cad462754324083839b11cf6956e1d23f6112d3c77f17334ebbd80f49d56840b2b03ed9abef8cb0
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@octokit/request@npm:^9.2.3":
|
"@octokit/request@npm:^10.0.2":
|
||||||
version: 9.2.3
|
version: 10.0.3
|
||||||
resolution: "@octokit/request@npm:9.2.3"
|
resolution: "@octokit/request@npm:10.0.3"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@octokit/endpoint": "npm:^10.1.4"
|
"@octokit/endpoint": "npm:^11.0.0"
|
||||||
"@octokit/request-error": "npm:^6.1.8"
|
"@octokit/request-error": "npm:^7.0.0"
|
||||||
"@octokit/types": "npm:^14.0.0"
|
"@octokit/types": "npm:^14.0.0"
|
||||||
fast-content-type-parse: "npm:^2.0.0"
|
fast-content-type-parse: "npm:^3.0.0"
|
||||||
universal-user-agent: "npm:^7.0.2"
|
universal-user-agent: "npm:^7.0.2"
|
||||||
checksum: 10c0/96067fc9a5f30f2faa00f08015309930561c3ea0536b543e1c91c475f965eabc81c48fc27d401681ebdb3f6c1acc5d46eaa69163ab98b0faa08be1c02ea5b684
|
checksum: 10c0/2d9b2134390ef3aa9fe0c5e659fe93dd94fbabc4dcc6da6e16998dc84b5bda200e6b7a4e178f567883d0ba99c0ea5a6d095a417d86d76854569196c39d2f9a6d
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@octokit/rest@npm:^21.1.1":
|
"@octokit/rest@npm:^22.0.0":
|
||||||
version: 21.1.1
|
version: 22.0.0
|
||||||
resolution: "@octokit/rest@npm:21.1.1"
|
resolution: "@octokit/rest@npm:22.0.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@octokit/core": "npm:^6.1.4"
|
"@octokit/core": "npm:^7.0.2"
|
||||||
"@octokit/plugin-paginate-rest": "npm:^11.4.2"
|
"@octokit/plugin-paginate-rest": "npm:^13.0.1"
|
||||||
"@octokit/plugin-request-log": "npm:^5.3.1"
|
"@octokit/plugin-request-log": "npm:^6.0.0"
|
||||||
"@octokit/plugin-rest-endpoint-methods": "npm:^13.3.0"
|
"@octokit/plugin-rest-endpoint-methods": "npm:^16.0.0"
|
||||||
checksum: 10c0/59e4fe55942e6f94ff6924934418fbfdee516f6df00889f9417add037c2163b45079a600b6c43449bc824641c9f1b9ac6fe9d3b52a5a1ed3e5e12de697171b78
|
checksum: 10c0/aea3714301f43fbadb22048045a7aef417cdefa997d1baf0b26860eaa9038fb033f7d4299eab06af57a03433871084cf38144fc5414caf80accce714e76d34e2
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@octokit/types@npm:^13.10.0":
|
"@octokit/types@npm:^14.0.0, @octokit/types@npm:^14.1.0":
|
||||||
version: 13.10.0
|
|
||||||
resolution: "@octokit/types@npm:13.10.0"
|
|
||||||
dependencies:
|
|
||||||
"@octokit/openapi-types": "npm:^24.2.0"
|
|
||||||
checksum: 10c0/f66a401b89d653ec28e5c1529abdb7965752db4d9d40fa54c80e900af4c6bf944af6bd0a83f5b4f1eecb72e3d646899dfb27ffcf272ac243552de7e3b97a038d
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@octokit/types@npm:^14.0.0":
|
|
||||||
version: 14.1.0
|
version: 14.1.0
|
||||||
resolution: "@octokit/types@npm:14.1.0"
|
resolution: "@octokit/types@npm:14.1.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -1306,10 +1290,10 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"before-after-hook@npm:^3.0.2":
|
"before-after-hook@npm:^4.0.0":
|
||||||
version: 3.0.2
|
version: 4.0.0
|
||||||
resolution: "before-after-hook@npm:3.0.2"
|
resolution: "before-after-hook@npm:4.0.0"
|
||||||
checksum: 10c0/dea640f9e88a1085372c9bcc974b7bf379267490693da92ec102a7d8b515dd1e95f00ef575a146b83ca638104c57406c3427d37bdf082f602dde4b56d05bba14
|
checksum: 10c0/9f8ae8d1b06142bcfb9ef6625226b5e50348bb11210f266660eddcf9734e0db6f9afc4cb48397ee3f5ac0a3728f3ae401cdeea88413f7bed748a71db84657be2
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@ -1693,10 +1677,10 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"fast-content-type-parse@npm:^2.0.0":
|
"fast-content-type-parse@npm:^3.0.0":
|
||||||
version: 2.0.1
|
version: 3.0.0
|
||||||
resolution: "fast-content-type-parse@npm:2.0.1"
|
resolution: "fast-content-type-parse@npm:3.0.0"
|
||||||
checksum: 10c0/e5ff87d75a35ae4cf377df1dca46ec49e7abbdc8513689676ecdef548b94900b50e66e516e64470035d79b9f7010ef15d98c24d8ae803a881363cc59e0715e19
|
checksum: 10c0/06251880c83b7118af3a5e66e8bcee60d44f48b39396fc60acc2b4630bd5f3e77552b999b5c8e943d45a818854360e5e97164c374ec4b562b4df96a2cdf2e188
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@ -1761,6 +1745,17 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"find-up@npm:^7.0.0":
|
||||||
|
version: 7.0.0
|
||||||
|
resolution: "find-up@npm:7.0.0"
|
||||||
|
dependencies:
|
||||||
|
locate-path: "npm:^7.2.0"
|
||||||
|
path-exists: "npm:^5.0.0"
|
||||||
|
unicorn-magic: "npm:^0.1.0"
|
||||||
|
checksum: 10c0/e6ee3e6154560bc0ab3bc3b7d1348b31513f9bdf49a5dd2e952495427d559fa48cdf33953e85a309a323898b43fa1bfbc8b80c880dfc16068384783034030008
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"foreground-child@npm:^3.1.0":
|
"foreground-child@npm:^3.1.0":
|
||||||
version: 3.3.1
|
version: 3.3.1
|
||||||
resolution: "foreground-child@npm:3.3.1"
|
resolution: "foreground-child@npm:3.3.1"
|
||||||
@ -2038,6 +2033,15 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"locate-path@npm:^7.2.0":
|
||||||
|
version: 7.2.0
|
||||||
|
resolution: "locate-path@npm:7.2.0"
|
||||||
|
dependencies:
|
||||||
|
p-locate: "npm:^6.0.0"
|
||||||
|
checksum: 10c0/139e8a7fe11cfbd7f20db03923cacfa5db9e14fa14887ea121345597472b4a63c1a42a8a5187defeeff6acf98fd568da7382aa39682d38f0af27433953a97751
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"lodash-es@npm:^4.17.21":
|
"lodash-es@npm:^4.17.21":
|
||||||
version: 4.17.21
|
version: 4.17.21
|
||||||
resolution: "lodash-es@npm:4.17.21"
|
resolution: "lodash-es@npm:4.17.21"
|
||||||
@ -2227,6 +2231,24 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"p-limit@npm:^4.0.0":
|
||||||
|
version: 4.0.0
|
||||||
|
resolution: "p-limit@npm:4.0.0"
|
||||||
|
dependencies:
|
||||||
|
yocto-queue: "npm:^1.0.0"
|
||||||
|
checksum: 10c0/a56af34a77f8df2ff61ddfb29431044557fcbcb7642d5a3233143ebba805fc7306ac1d448de724352861cb99de934bc9ab74f0d16fe6a5460bdbdf938de875ad
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"p-locate@npm:^6.0.0":
|
||||||
|
version: 6.0.0
|
||||||
|
resolution: "p-locate@npm:6.0.0"
|
||||||
|
dependencies:
|
||||||
|
p-limit: "npm:^4.0.0"
|
||||||
|
checksum: 10c0/d72fa2f41adce59c198270aa4d3c832536c87a1806e0f69dffb7c1a7ca998fb053915ca833d90f166a8c082d3859eabfed95f01698a3214c20df6bb8de046312
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"p-map@npm:^7.0.2":
|
"p-map@npm:^7.0.2":
|
||||||
version: 7.0.3
|
version: 7.0.3
|
||||||
resolution: "p-map@npm:7.0.3"
|
resolution: "p-map@npm:7.0.3"
|
||||||
@ -2258,6 +2280,13 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"path-exists@npm:^5.0.0":
|
||||||
|
version: 5.0.0
|
||||||
|
resolution: "path-exists@npm:5.0.0"
|
||||||
|
checksum: 10c0/b170f3060b31604cde93eefdb7392b89d832dfbc1bed717c9718cbe0f230c1669b7e75f87e19901da2250b84d092989a0f9e44d2ef41deb09aa3ad28e691a40a
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"path-is-absolute@npm:^1.0.0":
|
"path-is-absolute@npm:^1.0.0":
|
||||||
version: 1.0.1
|
version: 1.0.1
|
||||||
resolution: "path-is-absolute@npm:1.0.1"
|
resolution: "path-is-absolute@npm:1.0.1"
|
||||||
@ -2577,13 +2606,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"toml@npm:^3.0.0":
|
|
||||||
version: 3.0.0
|
|
||||||
resolution: "toml@npm:3.0.0"
|
|
||||||
checksum: 10c0/8d7ed3e700ca602e5419fca343e1c595eb7aa177745141f0761a5b20874b58ee5c878cd045c408da9d130cb2b611c639912210ba96ce2f78e443569aa8060c18
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"tr46@npm:~0.0.3":
|
"tr46@npm:~0.0.3":
|
||||||
version: 0.0.3
|
version: 0.0.3
|
||||||
resolution: "tr46@npm:0.0.3"
|
resolution: "tr46@npm:0.0.3"
|
||||||
@ -2626,6 +2648,13 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"unicorn-magic@npm:^0.1.0":
|
||||||
|
version: 0.1.0
|
||||||
|
resolution: "unicorn-magic@npm:0.1.0"
|
||||||
|
checksum: 10c0/e4ed0de05b0a05e735c7d8a2930881e5efcfc3ec897204d5d33e7e6247f4c31eac92e383a15d9a6bccb7319b4271ee4bea946e211bf14951fec6ff2cbbb66a92
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"unicorn-magic@npm:^0.3.0":
|
"unicorn-magic@npm:^0.3.0":
|
||||||
version: 0.3.0
|
version: 0.3.0
|
||||||
resolution: "unicorn-magic@npm:0.3.0"
|
resolution: "unicorn-magic@npm:0.3.0"
|
||||||
@ -2768,6 +2797,13 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"yocto-queue@npm:^1.0.0":
|
||||||
|
version: 1.2.1
|
||||||
|
resolution: "yocto-queue@npm:1.2.1"
|
||||||
|
checksum: 10c0/5762caa3d0b421f4bdb7a1926b2ae2189fc6e4a14469258f183600028eb16db3e9e0306f46e8ebf5a52ff4b81a881f22637afefbef5399d6ad440824e9b27f9f
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"yoctocolors-cjs@npm:^2.1.2":
|
"yoctocolors-cjs@npm:^2.1.2":
|
||||||
version: 2.1.2
|
version: 2.1.2
|
||||||
resolution: "yoctocolors-cjs@npm:2.1.2"
|
resolution: "yoctocolors-cjs@npm:2.1.2"
|
||||||
|
|||||||
Reference in New Issue
Block a user