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

setup-boilerplate

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

setup-boilerplate - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

5

dist/index.js

@@ -77,4 +77,5 @@ // src/index.ts

validate: (value) => {
if (!/^[a-z\-]+$/.test(value))
return "must be kebab-case";
const validRegexp = /^[a-z][a-z\d]*(?:-[a-z\d]+)*$/;
if (!validRegexp.test(value))
return `must be kebab-case, match regexp: ${validRegexp.source}`;
}

@@ -81,0 +82,0 @@ });

3

package.json
{
"name": "setup-boilerplate",
"version": "0.0.3",
"version": "0.0.4",
"description": "cli to setup boilerplate",

@@ -82,2 +82,3 @@ "keywords": [

},
"packageManager": "pnpm@8.15.5+sha256.4b4efa12490e5055d59b9b9fc9438b7d581a6b7af3b5675eb5c5f447cee1a589",
"scripts": {

@@ -84,0 +85,0 @@ "build": "tsup-node",

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