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

@remix-project/remixd

Package Overview
Dependencies
Maintainers
4
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@remix-project/remixd - npm Package Compare versions

Comparing version 0.6.2 to 0.6.3

src/scripts/installSlither.d.ts

5

package.json
{
"name": "@remix-project/remixd",
"version": "0.6.2",
"version": "0.6.3",
"description": "remix server: allow accessing file system from remix.ethereum.org and start a dev environment (see help section)",

@@ -16,3 +16,4 @@ "main": "index.js",

"build": "tsc -p ./ && chmod +x ./src/bin/remixd.js",
"dev": "nodemon"
"dev": "nodemon",
"postinstall": "node src/scripts/installSlither.js"
},

@@ -19,0 +20,0 @@ "publishConfig": {

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

.option('-s, --shared-folder <path>', 'Folder to share with Remix IDE (Default: CWD)')
.option('-i, --install <name>', 'Module name to install locally (Supported: ["slither"])')
.option('-r, --read-only', 'Treat shared folder as read-only (experimental)')

@@ -72,2 +73,7 @@ .on('--help', function () {

yield warnLatestVersion();
if (program.install && !program.readOnly) {
if (program.install.toLowerCase() === 'slither')
require('./../scripts/installSlither');
process.exit(0);
}
if (!program.remixIde) {

@@ -74,0 +80,0 @@ console.log('\x1b[33m%s\x1b[0m', '[WARN] You can only connect to remixd from one of the supported origins.');

src/bin/remixd.js.map

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