Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

node-version-utils

Package Overview
Dependencies
Maintainers
1
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-version-utils - npm Package Compare versions

Comparing version
1.3.6
to
1.3.7
+2
-2
package.json
{
"name": "node-version-utils",
"version": "1.3.6",
"version": "1.3.7",
"description": "Utilities for running commands on a specific version of node by installed path",

@@ -31,3 +31,3 @@ "keywords": [

"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.cts",
"types": "dist/cjs/index.d.ts",
"files": [

@@ -34,0 +34,0 @@ "dist"

export { default as spawnOptions } from './spawnOptions.js';
export type * from './types.js';
export type Compare = (key: string) => boolean;
export default function startsCaseInsensitiveFn(string: string): Compare;
import type { SpawnOptions } from './types.js';
export default function spawnOptions(installPath: string, options?: SpawnOptions): SpawnOptions;
export type { SpawnOptions } from 'cross-spawn-cb';
export interface ProcessEnv extends NodeJS.ProcessEnv {
npm_config_prefix: string;
npm_node_execpath: string;
NODE: string;
NODE_EXE?: string;
}