forked from mswjs/playwright
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.31 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"type": "module",
"name": "@msw/playwright",
"version": "0.4.2",
"description": "Mock Service Worker binding for Playwright",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"dev": "tsdown --watch",
"test": "playwright test",
"app:dev": "vite dev",
"app:build": "vite build",
"app:start": "vite",
"build": "tsdown",
"release": "release publish"
},
"files": [
"./src",
"./build"
],
"keywords": [
"playwright",
"api",
"mock",
"msw",
"request"
],
"license": "MIT",
"funding": "https://github.com/sponsors/mswjs",
"homepage": "https://mswjs.io",
"repository": {
"type": "git",
"url": "git+https://github.com/mswjs/playwright.git"
},
"author": {
"name": "Artem Zakharchenko",
"url": "https://github.com/kettanaito"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
},
"peerDependencies": {
"msw": "^2.10.3"
},
"devDependencies": {
"@epic-web/test-server": "^0.1.6",
"@ossjs/release": "^0.8.1",
"@playwright/test": "^1.52.0",
"@types/node": "^22.15.29",
"msw": "^2.10.3",
"tsdown": "^0.12.7",
"typescript": "^5.8.3",
"vite": "^7.0.2"
},
"dependencies": {
"@mswjs/interceptors": "^0.39.2",
"outvariant": "^1.4.3"
}
}