wxt 0.4.1 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +34 -11
- package/dist/cli.cjs +63 -52
- package/dist/index.cjs +55 -44
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +54 -43
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,10 +1,37 @@
|
|
|
1
|
-
<h1 align="center">
|
|
1
|
+
<h1 align="center">
|
|
2
|
+
<img style="vertical-align:middle" width="44" src="./docs/public/hero-logo.svg" alt="WXT Logo">
|
|
3
|
+
<span>WXT</span>
|
|
4
|
+
</h1>
|
|
5
|
+
|
|
6
|
+
<p align="center">
|
|
7
|
+
<span>Next-gen framework for developing web extensions.</span>
|
|
8
|
+
<br/>
|
|
9
|
+
<span>⚡</span>
|
|
10
|
+
<br/>
|
|
11
|
+
<q><i>It's like Nuxt, but for Chrome Extensions</i></q>
|
|
12
|
+
</p>
|
|
13
|
+
|
|
14
|
+
<p align="center">
|
|
15
|
+
<a href="https://wxt.dev" target="_blank">Get Started</a>
|
|
16
|
+
•
|
|
17
|
+
<a href="https://wxt.dev/get-started/installation.html" target="_blank">Installation</a>
|
|
18
|
+
•
|
|
19
|
+
<a href="https://wxt.dev/guide/background.html" target="_blank">Entrypoints</a>
|
|
20
|
+
•
|
|
21
|
+
<a href="https://wxt.dev/config.html" target="_blank">Configuration</a>
|
|
22
|
+
</p>
|
|
2
23
|
|
|
3
|
-
|
|
24
|
+

|
|
4
25
|
|
|
5
|
-
|
|
26
|
+
## Quick Start
|
|
6
27
|
|
|
7
|
-
|
|
28
|
+
Bootstrap a new project:
|
|
29
|
+
|
|
30
|
+
```sh
|
|
31
|
+
pnpx wxt@latest init <project-name>
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Or see the [installation guide](https://wxt.dev/get-started/installation.html) to get started with WXT.
|
|
8
35
|
|
|
9
36
|
## Features
|
|
10
37
|
|
|
@@ -18,17 +45,13 @@
|
|
|
18
45
|
- 🎨 Frontend framework agnostic: works with Vue, React, Svelte, etc
|
|
19
46
|
- 🖍️ Quickly bootstrap a new project
|
|
20
47
|
|
|
21
|
-
###
|
|
48
|
+
### Coming Soon
|
|
22
49
|
|
|
23
50
|
- 📏 Bundle analysis
|
|
24
51
|
- 🤖 Automated publishing
|
|
25
52
|
|
|
26
|
-
## Get Started
|
|
27
|
-
|
|
28
|
-
Checkout the [installation guide](https://wxt.dev/get-started/installation.html) to get started with WXT.
|
|
29
|
-
|
|
30
53
|
## Contributors
|
|
31
54
|
|
|
32
|
-
<a href="https://github.com/
|
|
33
|
-
<img src="https://contrib.rocks/image?repo=
|
|
55
|
+
<a href="https://github.com/wxt-dev/wxt/graphs/contributors">
|
|
56
|
+
<img src="https://contrib.rocks/image?repo=wxt-dev/wxt" />
|
|
34
57
|
</a>
|