@wxt-dev/browser 0.1.39 → 0.1.42

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 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.1.39",
4
+ "version": "0.1.42",
5
5
  "type": "module",
6
6
  "main": "src/index.mjs",
7
7
  "types": "src/index.d.ts",
@@ -10,6 +10,12 @@
10
10
  "url": "git+https://github.com/wxt-dev/wxt.git",
11
11
  "directory": "packages/browser"
12
12
  },
13
+ "scripts": {
14
+ "check": "check",
15
+ "gen": "bun run scripts/generate.ts",
16
+ "test": "echo 'noop'",
17
+ "test:coverage": "echo 'noop'"
18
+ },
13
19
  "author": {
14
20
  "name": "Aaron Klinker",
15
21
  "email": "aaronklinker1+wxt@gmail.com"
@@ -19,7 +25,7 @@
19
25
  "src"
20
26
  ],
21
27
  "devDependencies": {
22
- "@types/chrome": "0.1.39",
28
+ "@types/chrome": "0.1.42",
23
29
  "@types/node": "^20.0.0",
24
30
  "nano-spawn": "^2.0.0",
25
31
  "typescript": "^5.9.3",
@@ -29,9 +35,5 @@
29
35
  "@types/filesystem": "*",
30
36
  "@types/har-format": "*"
31
37
  },
32
- "peerDependencies": {},
33
- "scripts": {
34
- "check": "check",
35
- "gen": "tsx scripts/generate.ts"
36
- }
37
- }
38
+ "peerDependencies": {}
39
+ }
@@ -1,5 +1,6 @@
1
1
  /* DO NOT EDIT - generated by scripts/generate.ts */
2
2
 
3
+ /* eslint-disable @definitelytyped/strict-export-declare-modifiers */
3
4
  /* eslint-disable @typescript-eslint/no-wrapper-object-types */
4
5
  export namespace Browser {
5
6
  ////////////////////
@@ -3,7 +3,7 @@
3
3
  import { Entry, Log } from "har-format";
4
4
 
5
5
  declare global {
6
- export type HARFormatEntry = Entry;
7
- export type HARFormatLog = Log;
6
+ type HARFormatEntry = Entry;
7
+ type HARFormatLog = Log;
8
8
  }
9
9