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

@vercel/frameworks

Package Overview
Dependencies
Maintainers
16
Versions
166
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vercel/frameworks - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2-canary.0

8

frameworks.json

@@ -59,3 +59,9 @@ [

}
}
},
"recommendedIntegrations": [
{
"id": "oac_5lUsiANun1DEzgLg0NZx5Es3",
"dependencies": ["next-plugin-sentry", "next-sentry-source-maps"]
}
]
},

@@ -62,0 +68,0 @@ {

@@ -34,2 +34,6 @@ export interface FrameworkDetectionItem {

};
recommendedIntegrations?: {
id: string;
dependencies: string[];
}[];
}

4

package.json
{
"name": "@vercel/frameworks",
"version": "0.1.1",
"version": "0.1.2-canary.0",
"main": "frameworks.json",

@@ -17,3 +17,3 @@ "license": "UNLICENSED",

},
"gitHead": "be24510f16047610cf5081a2439ec0976c2b60e6"
"gitHead": "e18ff683b26b3a3aada69fd17c3e21ce2b04c9f3"
}

@@ -100,2 +100,21 @@ import Ajv from 'ajv';

},
recommendedIntegrations: {
type: 'array',
items: {
type: 'object',
required: ['id', 'dependencies'],
additionalProperties: false,
properties: {
id: {
type: 'string',
},
dependencies: {
type: 'array',
items: {
type: 'string',
},
},
},
},
},
},

@@ -102,0 +121,0 @@ },

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