forked from maloguertin/msw-trpc
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.05 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.05 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
{
"name": "msw-trpc",
"version": "2.0.0-beta.1",
"description": "Trpc API for Mock Service Worker (MSW).",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"test": "tsc --noEmit && vitest --run",
"build": "rimraf dist && tsc -p tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maloguertin/msw-trpc.git"
},
"keywords": [
"msw",
"trpc",
"testing",
"api"
],
"author": "Malo Guertin",
"license": "MIT",
"bugs": {
"url": "https://github.com/maloguertin/msw-trpc/issues"
},
"homepage": "https://github.com/maloguertin/msw-trpc#readme",
"devDependencies": {
"@trpc/client": "11.0.0-rc.351",
"@trpc/react-query": "11.0.0-rc.351",
"@trpc/server": "11.0.0-rc.351",
"msw": "^2.2.14",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"superjson": "^2.2.1",
"typescript": "^5.4.5",
"vitest": "^1.5.1",
"zod": "^3.23.4"
},
"peerDependencies": {
"@trpc/server": ">=11.0.0-rc.351",
"msw": "^2.2.14"
}
}