-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.56 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.56 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
63
64
65
66
67
68
69
70
71
72
73
{
"type": "module",
"name": "@msw/playwright",
"version": "0.6.6",
"description": "Mock Service Worker binding for Playwright",
"main": "./build/index.mjs",
"types": "./build/index.d.mts",
"exports": {
".": {
"types": "./build/index.d.mts",
"default": "./build/index.mjs"
}
},
"scripts": {
"dev": "tsdown --watch",
"test": "playwright test",
"test:ts": "vitest --typecheck",
"app:dev": "vite dev",
"app:build": "vite build",
"app:start": "vite",
"lint": "publint",
"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": {
"url": "https://github.com/mswjs/playwright"
},
"author": {
"name": "Artem Zakharchenko",
"url": "https://github.com/kettanaito"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
},
"peerDependencies": {
"msw": "^2.12.10"
},
"devDependencies": {
"@epic-web/test-server": "^0.1.6",
"@ossjs/release": "^0.10.1",
"@playwright/test": "^1.58.2",
"@types/node": "^22.15.29",
"@types/sinon": "^21.0.0",
"msw": "^2.12.10",
"publint": "^0.3.18",
"sinon": "^21.0.2",
"tsdown": "^0.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.1.0"
},
"dependencies": {
"@mswjs/interceptors": "^0.41.3",
"outvariant": "^1.4.3"
}
}