You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

rolldown

Package Overview
Dependencies
Maintainers
3
Versions
571
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rolldown - npm Package Compare versions

Comparing version

to
1.0.0-beta.28-commit.cd50e5f

dist/shared/binding-BO7hG1pA.d.mts

25

dist/experimental-runtime-types.d.ts
export class DevRuntime {
/**
* @type {Record<string, { exports: any }>}
* @type {Record<string, Module>}
*/
modules: Record<string, {
exports: any;
}>;
modules: Record<string, Module>;
/**

@@ -18,5 +16,5 @@ * @param {string} _moduleId

* @param {string} id
* @param {{ exports: any }} module
* @param {{ exports: any }} meta
*/
registerModule(id: string, module: {
registerModule(id: string, meta: {
exports: any;

@@ -55,1 +53,16 @@ }): void;

}
declare class Module {
/**
* @param {string} id
*/
constructor(id: string);
/**
* @type {any}
*/
exports: any;
/**
* @type {string}
*/
id: string;
}
export {};
{
"name": "rolldown",
"version": "1.0.0-beta.26-commit.e5d5666",
"version": "1.0.0-beta.28-commit.cd50e5f",
"description": "Fast JavaScript/TypeScript bundler in Rust with Rollup-compatible API.",

@@ -34,24 +34,24 @@ "type": "module",

".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./config": {
"require": "./dist/config.cjs",
"import": "./dist/config.mjs"
"import": "./dist/config.mjs",
"require": "./dist/config.cjs"
},
"./experimental": {
"require": "./dist/experimental-index.cjs",
"import": "./dist/experimental-index.mjs"
"import": "./dist/experimental-index.mjs",
"require": "./dist/experimental-index.cjs"
},
"./filter": {
"require": "./dist/filter-index.cjs",
"import": "./dist/filter-index.mjs"
"import": "./dist/filter-index.mjs",
"require": "./dist/filter-index.cjs"
},
"./parallelPlugin": {
"require": "./dist/parallel-plugin.cjs",
"import": "./dist/parallel-plugin.mjs"
"import": "./dist/parallel-plugin.mjs",
"require": "./dist/parallel-plugin.cjs"
},
"./parseAst": {
"require": "./dist/parse-ast-index.cjs",
"import": "./dist/parse-ast-index.mjs"
"import": "./dist/parse-ast-index.mjs",
"require": "./dist/parse-ast-index.cjs"
},

@@ -96,9 +96,9 @@ "./package.json": "./package.json"

"dependencies": {
"@oxc-project/runtime": "=0.77.0",
"@oxc-project/types": "=0.77.0",
"@oxc-project/runtime": "=0.77.2",
"@oxc-project/types": "=0.77.2",
"ansis": "^4.0.0",
"@rolldown/pluginutils": "1.0.0-beta.26-commit.e5d5666"
"@rolldown/pluginutils": "1.0.0-beta.28-commit.cd50e5f"
},
"devDependencies": {
"@napi-rs/cli": "^3.0.0-alpha.97",
"@napi-rs/cli": "^3.0.0",
"@napi-rs/wasm-runtime": "^0.2.10",

@@ -113,3 +113,3 @@ "@oxc-node/cli": "^0.0.29",

"glob": "^11.0.0",
"oxc-parser": "=0.77.0",
"oxc-parser": "=0.77.2",
"pathe": "^2.0.3",

@@ -126,19 +126,19 @@ "remeda": "^2.10.0",

"@rolldown/testing": "0.0.1",
"rolldown": "1.0.0-beta.26-commit.e5d5666"
"rolldown": "1.0.0-beta.28-commit.cd50e5f"
},
"optionalDependencies": {
"@rolldown/binding-darwin-x64": "1.0.0-beta.26-commit.e5d5666",
"@rolldown/binding-win32-x64-msvc": "1.0.0-beta.26-commit.e5d5666",
"@rolldown/binding-linux-x64-gnu": "1.0.0-beta.26-commit.e5d5666",
"@rolldown/binding-linux-x64-musl": "1.0.0-beta.26-commit.e5d5666",
"@rolldown/binding-freebsd-x64": "1.0.0-beta.26-commit.e5d5666",
"@rolldown/binding-win32-ia32-msvc": "1.0.0-beta.26-commit.e5d5666",
"@rolldown/binding-linux-arm-gnueabihf": "1.0.0-beta.26-commit.e5d5666",
"@rolldown/binding-linux-arm64-gnu": "1.0.0-beta.26-commit.e5d5666",
"@rolldown/binding-darwin-arm64": "1.0.0-beta.26-commit.e5d5666",
"@rolldown/binding-linux-arm64-musl": "1.0.0-beta.26-commit.e5d5666",
"@rolldown/binding-linux-arm64-ohos": "1.0.0-beta.26-commit.e5d5666",
"@rolldown/binding-win32-arm64-msvc": "1.0.0-beta.26-commit.e5d5666",
"@rolldown/binding-android-arm64": "1.0.0-beta.26-commit.e5d5666",
"@rolldown/binding-wasm32-wasi": "1.0.0-beta.26-commit.e5d5666"
"@rolldown/binding-darwin-x64": "1.0.0-beta.28-commit.cd50e5f",
"@rolldown/binding-win32-x64-msvc": "1.0.0-beta.28-commit.cd50e5f",
"@rolldown/binding-linux-x64-gnu": "1.0.0-beta.28-commit.cd50e5f",
"@rolldown/binding-linux-x64-musl": "1.0.0-beta.28-commit.cd50e5f",
"@rolldown/binding-freebsd-x64": "1.0.0-beta.28-commit.cd50e5f",
"@rolldown/binding-win32-ia32-msvc": "1.0.0-beta.28-commit.cd50e5f",
"@rolldown/binding-linux-arm-gnueabihf": "1.0.0-beta.28-commit.cd50e5f",
"@rolldown/binding-linux-arm64-gnu": "1.0.0-beta.28-commit.cd50e5f",
"@rolldown/binding-darwin-arm64": "1.0.0-beta.28-commit.cd50e5f",
"@rolldown/binding-linux-arm64-musl": "1.0.0-beta.28-commit.cd50e5f",
"@rolldown/binding-linux-arm64-ohos": "1.0.0-beta.28-commit.cd50e5f",
"@rolldown/binding-win32-arm64-msvc": "1.0.0-beta.28-commit.cd50e5f",
"@rolldown/binding-android-arm64": "1.0.0-beta.28-commit.cd50e5f",
"@rolldown/binding-wasm32-wasi": "1.0.0-beta.28-commit.cd50e5f"
},

@@ -156,3 +156,3 @@ "scripts": {

"build-types-check": "tsc -p ./tsconfig.check.json",
"build-js-glue": "pnpm run --sequential '/^build-(types|node|types-check)$/'",
"build-js-glue": "pnpm run --sequential '/^build-(node|types-check)$/'",
"build-native:debug": "pnpm run --sequential '/^build-(binding|js-glue)$/'",

@@ -159,0 +159,0 @@ "build-native:release": "pnpm run --sequential '/^build-(binding:release|js-glue)$/'",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet