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
12
Versions
165
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.0.18-canary.4 to 0.0.18-canary.5

4

frameworks.json

@@ -10,2 +10,3 @@ [

"website": "https://blitzjs.com",
"useRuntime": { "src": "package.json", "use": "@vercel/next" },
"detectors": {

@@ -40,2 +41,3 @@ "every": [

"sort": 1,
"useRuntime": { "src": "package.json", "use": "@vercel/next" },
"detectors": {

@@ -695,2 +697,4 @@ "every": [

"website": "https://redwoodjs.com",
"useRuntime": { "src": "package.json", "use": "@vercel/redwood" },
"ignoreRuntimes": ["@vercel/node"],
"detectors": {

@@ -697,0 +701,0 @@ "every": [

@@ -23,2 +23,4 @@ export interface FrameworkDetectionItem {

sort?: number;
useRuntime?: { src: string; use: string };
ignoreRuntimes?: string[];
detectors?: {

@@ -25,0 +27,0 @@ every?: FrameworkDetectionItem[];

4

package.json
{
"name": "@vercel/frameworks",
"version": "0.0.18-canary.4",
"version": "0.0.18-canary.5",
"main": "frameworks.json",

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

},
"gitHead": "2f53b0dcdbf84bfc3ad92d97dfe8a10f223dd88c"
"gitHead": "828244293934439370463b050eec5514323c1c32"
}

@@ -67,2 +67,17 @@ import Ajv from 'ajv';

description: { type: 'string' },
useRuntime: {
type: 'object',
required: ['src', 'use'],
additionalProperties: false,
properties: {
src: { type: 'string' },
use: { type: 'string' },
},
},
ignoreRuntimes: {
type: 'array',
items: {
type: 'string',
},
},
detectors: {

@@ -69,0 +84,0 @@ type: 'object',

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