-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.22 KB
/
package.json
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
{
"name": "mirage-msw",
"version": "0.2.2",
"description": "Allow mirage to use MSW (Mock Service Worker) as the interceptor",
"main": "dist/msw-config.cjs",
"module": "dist/msw-config.js",
"type": "module",
"keywords": [
"msw",
"prototype",
"server",
"testing"
],
"scripts": {
"build": "tsup lib/msw-config.ts --dts --format=cjs,esm --platform=browser --external=msw",
"test": "yarn",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"route-recognizer": "^0.3.4"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"miragejs": "^0.2.0-alpha.3",
"msw": "2.3.0",
"prettier": "^3.0.1",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
},
"exports": {
".": {
"import": {
"types": "./dist/msw-config.d.ts",
"default": "./dist/msw-config.js"
},
"require": {
"types": "./dist/msw-config.d.cts",
"default": "./dist/msw-config.cjs"
}
}
},
"peerDependancies": {
"miragejs": ">=0.2.0-alpha.3",
"msw": "^2.0.0"
},
"author": "Brian Gantzler",
"license": "MIT",
"packageManager": "pnpm@8.6.12"
}