@wxt-dev/browser 0.0.326 → 0.0.327
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/package.json +2 -2
- package/src/gen/index.d.ts +5 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wxt-dev/browser",
|
|
3
3
|
"description": "Provides a cross-browser API for using extension APIs and types based on @types/chrome",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.327",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.mjs",
|
|
7
7
|
"types": "src/index.d.ts",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"src"
|
|
20
20
|
],
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@types/chrome": "0.0.
|
|
22
|
+
"@types/chrome": "0.0.327",
|
|
23
23
|
"fs-extra": "^11.3.0",
|
|
24
24
|
"nano-spawn": "^0.2.0",
|
|
25
25
|
"tsx": "4.19.4",
|
package/src/gen/index.d.ts
CHANGED
|
@@ -6941,6 +6941,11 @@ export namespace Browser {
|
|
|
6941
6941
|
installType: string;
|
|
6942
6942
|
/** The version of this extension, app, or theme. */
|
|
6943
6943
|
version: string;
|
|
6944
|
+
/**
|
|
6945
|
+
* The version name of this extension, app, or theme if the manifest specified one.
|
|
6946
|
+
* @since Chrome 50
|
|
6947
|
+
*/
|
|
6948
|
+
versionName?: string;
|
|
6944
6949
|
/** The extension's unique identifier. */
|
|
6945
6950
|
id: string;
|
|
6946
6951
|
/**
|