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

bombyx

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bombyx

Supplementary configuration for front-end development environments.

  • 1.1.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source

bombyx

npm package

Supplementary configuration for front-end development environments.

NPM version NPM Downloads

Installation

$ npm install -g bombyx

Usage

$ bombyx
                                                      

? Select a language:  › - Select one of the following languages manually.
❯   English
    简体中文

Declaration

export declare function bombyx(opts: Options): Promise<void>;

export interface EslintOptions {
    /** 适配 typescript 相关 */
    ts?: boolean;
    /** 适配 react 相关 */
    react?: boolean;
}

export interface HuskyOptions {
    /** 添加 lint-staged 支持 */
    lintStaged: boolean;
    /** 添加 commitlint 支持 */
    commitLint: boolean;
}

export interface Options {
    /** 当前工作目录 */
    cwd?: string;
    /** 配置eslint */
    eslint?: boolean | EslintOptions;
    /** 配置husky */
    husky?: boolean | HuskyOptions;
    /** 自定义事件触发 */
    emitter: EventEmitter;
    /** 指定语言显示 */
    lang?: string;
}

export interface UserSelection {
    functions: string[];
    eslintExtra: string[];
}

Keywords

FAQs

Package last updated on 20 Apr 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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