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 5.0.12 to 5.1.0

4

package.json
{
"name": "@travetto/manifest",
"version": "5.0.12",
"version": "5.1.0",
"description": "Support for project indexing, manifesting, along with file watching",

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

"dependencies": {
"@types/node": "^22.10.2"
"@types/node": "^22.10.7"
},

@@ -32,0 +32,0 @@ "repository": {

@@ -20,4 +20,6 @@ import { existsSync, readFileSync } from 'node:fs';

let pkg: Pkg | undefined;
const packages: Pkg[] = [];
do {
pkg && packages.push(pkg);
prev = folder;

@@ -35,2 +37,5 @@ folder = path.dirname(folder);

throw new Error('Could not find a package.json');
} else if (!pred(pkg) && packages.length) {
// We never matched, lets fallback to the first package.json found
pkg = packages[0];
}

@@ -37,0 +42,0 @@

Sorry, the diff of this file is not supported yet

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