-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.87 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "fastify-uws",
"version": "1.0.1",
"description": "A performant HTTP and WebSocket server for Fastify with uWebSockets.",
"main": "./dist/fastify-uws.cjs",
"module": "./dist/fastify-uws.js",
"types": "./dist/src/fastify-uws.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/src/fastify-uws.d.ts",
"default": "./dist/fastify-uws.js"
},
"require": {
"types": "./dist/src/fastify-uws.d.ts",
"default": "./dist/fastify-uws.cjs"
}
}
},
"scripts": {
"build": "vite build",
"lint": "biome check --write ./src",
"test": "vitest run",
"e2e": "playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vanilla-IceCream/fastify-uws.git"
},
"keywords": [
"fastify",
"uws",
"uWebSockets"
],
"author": "Vanilla IceCream",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vanilla-IceCream/fastify-uws/issues"
},
"homepage": "https://github.com/Vanilla-IceCream/fastify-uws#readme",
"dependencies": {
"@fastify/error": "^4.0.0",
"eventemitter3": "^5.0.1",
"fastify-plugin": "^5.0.1",
"ipaddr.js": "^2.2.0",
"it-pushable": "^3.2.3",
"it-to-stream": "^1.0.0",
"streamx": "^2.20.1",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.49.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.1",
"@fastify/multipart": "^9.0.0",
"@fastify/websocket": "^11.0.0",
"@types/node": "^20.16.5",
"@types/streamx": "^2.9.5",
"@vitest/coverage-v8": "^2.1.1",
"axios": "^1.7.7",
"eventsource": "^2.0.2",
"fastify": "^5.0.0",
"form-data": "^4.0.0",
"rollup-plugin-node-externals": "^7.1.3",
"typescript": "^5.6.2",
"vite": "^5.4.6",
"vite-plugin-dts": "^4.2.1",
"vitest": "^2.1.1",
"ws": "^8.18.0"
}
}