-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.44 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
{
"type": "module",
"name": "@mswjs/socket.io-binding",
"version": "0.2.0",
"description": "WebSocket codec to mock Socket.IO connections with Mock Service Worker",
"exports": {
".": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"./package.json": "./package.json"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"test": "vitest",
"test:ts": "vitest --config=./tests/typings/vitest.config.ts",
"lint": "oxlint",
"publint": "publint",
"build": "tsdown",
"release": "release publish"
},
"keywords": [
"msw",
"socket.io",
"socket",
"websocket",
"connection",
"binding",
"mock"
],
"publishConfig": {
"access": "public"
},
"files": [
"build",
"src"
],
"author": "Artem Zakharchenko <kettanaito@gmail.com>",
"license": "MIT",
"peerDependencies": {
"@mswjs/interceptors": "^0.43.2",
"msw": "^2.10.2"
},
"dependencies": {
"engine.io-parser": "^5.2.3",
"socket.io-parser": "^4.2.7"
},
"devDependencies": {
"@epic-web/test-server": "^0.1.6",
"@mswjs/interceptors": "^0.44.0",
"@ossjs/release": "^0.11.2",
"@types/node": "^26.6.2",
"msw": "^2.15.0",
"oxlint": "^1.83.0",
"publint": "^0.3.24",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"tsdown": "^0.23.0",
"typescript": "^7.0.2",
"vite": "^8.3.0",
"vitest": "^5.0.1"
}
}