-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.23 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
52
53
54
55
56
57
58
59
60
{
"type": "module",
"name": "@epic-web/test-server",
"version": "0.1.0",
"description": "Utility for creating HTTP and WebSocket servers for testing",
"main": "./lib/index.js",
"files": [
"./lib",
"./http",
"./ws"
],
"scripts": {
"test": "vitest",
"build": "tsup",
"prepack": "pnpm test && pnpm build",
"release": "release publish"
},
"engines": {
"node": ">=20"
},
"keywords": [
"test",
"server",
"http",
"websocket",
"testing",
"local"
],
"author": "Artem Zakharchenko <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/epicweb-dev/test-server"
},
"publishConfig": {
"access": "public"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
},
"dependencies": {
"@hono/node-server": "^1.12.1",
"@hono/node-ws": "^1.0.4",
"@open-draft/deferred-promise": "^2.2.0",
"@types/ws": "^8.5.12",
"hono": "^4.5.8",
"ws": "^8.18.0"
},
"devDependencies": {
"@ossjs/release": "^0.8.1",
"@types/node": "^20.0.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"undici": "^6.19.8",
"vitest": "^2.0.5"
}
}