@msw/playwright 0.6.5 → 0.6.6

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.
Files changed (2) hide show
  1. package/build/index.d.mts +1 -42073
  2. package/package.json +6 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@msw/playwright",
4
- "version": "0.6.5",
4
+ "version": "0.6.6",
5
5
  "description": "Mock Service Worker binding for Playwright",
6
6
  "main": "./build/index.mjs",
7
7
  "types": "./build/index.d.mts",
@@ -48,10 +48,12 @@
48
48
  "@types/node": "^22.15.29",
49
49
  "@types/sinon": "^21.0.0",
50
50
  "msw": "^2.12.10",
51
+ "publint": "^0.3.18",
51
52
  "sinon": "^21.0.2",
52
53
  "tsdown": "^0.21.0",
53
54
  "typescript": "^5.9.3",
54
- "vite": "^7.3.1"
55
+ "vite": "^7.3.1",
56
+ "vitest": "^4.1.0"
55
57
  },
56
58
  "dependencies": {
57
59
  "@mswjs/interceptors": "^0.41.3",
@@ -60,9 +62,11 @@
60
62
  "scripts": {
61
63
  "dev": "tsdown --watch",
62
64
  "test": "playwright test",
65
+ "test:ts": "vitest --typecheck",
63
66
  "app:dev": "vite dev",
64
67
  "app:build": "vite build",
65
68
  "app:start": "vite",
69
+ "lint": "publint",
66
70
  "build": "tsdown",
67
71
  "release": "release publish"
68
72
  }