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

fix-peer-deps

Package Overview
Dependencies
Maintainers
0
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fix-peer-deps - npm Package Compare versions

Comparing version 1.1.4 to 1.1.5

8

CHANGELOG.md

@@ -8,2 +8,10 @@ # Changelog

## [1.1.5] - 2024-02-14
### Changed
- Updated RunKit example to use CommonJS require instead of ES imports
- Improved RunKit compatibility
- Fixed documentation for better RunKit integration
## [1.1.4] - 2024-02-14

@@ -10,0 +18,0 @@

6

example.js
// Welcome to fix-peer-deps interactive demo!
// This example demonstrates all major features of the package.
import { analyzePeerDependencies, detectPackageManager, autoFix, checkDeepPeerDependencies } from 'fix-peer-deps';
import fs from 'fs/promises';
import chalk from 'chalk';
const { analyzePeerDependencies, detectPackageManager, autoFix, checkDeepPeerDependencies } = require('fix-peer-deps');
const fs = require('fs').promises;
const chalk = require('chalk');

@@ -8,0 +8,0 @@ // Sample projects demonstrating different scenarios

@@ -11,3 +11,3 @@ #!/usr/bin/env node

const VERSION = '1.1.4'; // Match with package.json
const VERSION = '1.1.5'; // Match with package.json

@@ -14,0 +14,0 @@ const IGNORE_PATTERNS = [

{
"name": "fix-peer-deps",
"version": "1.1.4",
"version": "1.1.5",
"description": "A modern CLI tool to analyze and fix peer dependency issues across multiple package managers",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -54,3 +54,3 @@ # fix-peer-deps

// Interactive demo of fix-peer-deps features
import { analyzePeerDependencies, detectPackageManager, autoFix, checkDeepPeerDependencies } from 'fix-peer-deps';
const { analyzePeerDependencies, detectPackageManager, autoFix, checkDeepPeerDependencies } = require('fix-peer-deps');

@@ -57,0 +57,0 @@ // Sample project with various dependency scenarios

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