New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@travetto/manifest

Package Overview
Dependencies
Maintainers
1
Versions
75
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@travetto/manifest - npm Package Compare versions

Comparing version 3.0.0-rc.4 to 3.0.0-rc.5

2

package.json
{
"name": "@travetto/manifest",
"version": "3.0.0-rc.4",
"version": "3.0.0-rc.5",
"description": "Manifest support",

@@ -5,0 +5,0 @@ "keywords": [

@@ -57,2 +57,3 @@ import { readFileSync } from 'fs';

const children: Record<string, PackageVisitReq<T>> = {};
const local = modulePath === rootPath && !modulePath.includes('node_modules');
for (const [deps, rel] of [

@@ -62,3 +63,3 @@ [pkg.dependencies, 'prod'],

[pkg.optionalDependencies, 'opt'],
...(modulePath === rootPath ? [[pkg.devDependencies, 'dev'] as const] : []),
...(local ? [[pkg.devDependencies, 'dev'] as const] : []),
] as const) {

@@ -65,0 +66,0 @@ for (const [name, version] of Object.entries(deps ?? {})) {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc