-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 939 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 939 Bytes
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
{
"type": "module",
"name": "@msw/cloudflare",
"version": "0.0.0",
"description": "Mock API in Cloudflare with Mock Service Worker.",
"exports": {
".": "./build/index.mjs"
},
"files": [
"./build"
],
"scripts": {
"start": "tsdown -w",
"test": "vitest",
"lint": "publint",
"build": "tsdown"
},
"keywords": [
"cloudflare",
"mock",
"api",
"intercept",
"request",
"network",
"test"
],
"author": "Artem Zakharchenko <kettanaito@gmail.com>",
"license": "MIT",
"peerDependencies": {
"msw": ">=2.14.1"
},
"dependencies": {
"@mswjs/interceptors": "^0.41.6"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.14.9",
"@cloudflare/workers-types": "^4.20260424.1",
"@epic-web/test-server": "^0.1.6",
"msw": "^2.14.6",
"publint": "^0.3.18",
"tsdown": "^0.21.10",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}