An open API service indexing awesome lists of open source software.

https://github.com/wxt-dev/module-template

Template repo for a WXT module
https://github.com/wxt-dev/module-template

Last synced: 5 months ago
JSON representation

Template repo for a WXT module

Awesome Lists containing this project

README

          

# My Module

My new WXT module for doing amazing things.

## Features

- ⛰  Foo
- 🚠  Bar
- 🌲  Baz

## Installation

Install the module to your WXT extension with one command:

```bash
pnpm i my-module
```

Then add the module to your `wxt.config.ts` file:

```ts
export default defineConfig({
modules: ["my-module"],
})
```

That's it! You can now use My Module in your WXT extension ✨

## Contribution

Local development

```bash
# Install dependencies
pnpm install

# Generate type stubs
pnpm wxt prepare

# Develop test extension
pnpm dev

# Build the test extension
pnpm dev:build

# Run prettier, publint, and type checks
pnpm check
```