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

@architect/inventory

Package Overview
Dependencies
Maintainers
0
Versions
140
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@architect/inventory - npm Package Compare versions

Comparing version 4.0.5 to 4.0.6

7

package.json
{
"name": "@architect/inventory",
"version": "4.0.5",
"version": "4.0.6",
"description": "Architect project resource enumeration utility",

@@ -30,3 +30,3 @@ "main": "src/index.js",

"@aws-lite/ssm": "^0.2.3",
"lambda-runtimes": "~2.0.2"
"lambda-runtimes": "~2.0.5"
},

@@ -44,5 +44,2 @@ "devDependencies": {

},
"eslintConfig": {
"extends": "@architect/eslint-config"
},
"nyc": {

@@ -49,0 +46,0 @@ "check-coverage": true,

@@ -24,2 +24,5 @@ let { join, sep } = require('path')

let { node } = process.versions
let nodeVer = Number(node.split('.')[0])
for (let pluginItem of pluginItems) {

@@ -56,2 +59,5 @@ let { plugin, type } = pluginItem

plugins[name] = require(pluginPath)
if (nodeVer >= 22 && plugins[name].default) {
plugins[name] = plugins[name].default
}
}

@@ -157,2 +163,3 @@ catch (err) {

let esmErrors = [
'require() cannot be used on an ESM graph with top-level await. Use import() instead.',
'Cannot use import statement outside a module',

@@ -159,0 +166,0 @@ `Unexpected token 'export'`,

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