-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
92 lines (92 loc) · 2.29 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@geut/fastify-uws",
"type": "module",
"version": "6.0.0",
"description": "uWebSockets.js for fastify",
"author": {
"name": "GEUT",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/geut/fastify-uws#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/geut/fastify-uws.git"
},
"bugs": {
"url": "https://github.com/geut/fastify-uws/issues"
},
"keywords": [
"fastify",
"uWebSockets.js",
"fastify-plugin"
],
"exports": {
".": {
"types": "./types/server.d.ts",
"import": "./src/server.js",
"require": "./dist/server.cjs"
},
"./plugin": {
"types": "./types/plugin.d.ts",
"import": "./src/plugin.js",
"require": "./dist/plugin.cjs"
},
"./package.json": "./package.json"
},
"workspaces": [
"tests/fastify/module"
],
"files": [
"dist",
"src",
"types"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "node index.js",
"build": "rm -rf dist && tsup src/server.js src/plugin.js --splitting && npm run types",
"test": "uvu --ignore tests/fastify",
"posttest": "npm run lint && tsc",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm test && npm run build && npm run types",
"types": "node scripts/generate-dts.js",
"benchmark": "node benchmarks/index.js"
},
"dependencies": {
"eventemitter3": "^5.0.1",
"fastify-plugin": "^4.5.1",
"ipaddr.js": "^2.2.0",
"nanoerror": "^2.0.0",
"streamx": "npm:@geut/streamx@^2.20.1",
"tempy": "^3.1.0",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.49.0"
},
"devDependencies": {
"@fastify/cookie": "^11.0.1",
"@fastify/multipart": "^9.0.1",
"@fastify/static": "^8.0.1",
"@types/events": "^3.0.2",
"@types/node": "^20.8.10",
"@types/streamx": "^2.9.3",
"autocannon": "^8.0.0",
"autocannon-compare": "^0.4.0",
"eslint": "^8.57.0",
"eslint-config-standard-ext": "^2.0.0",
"execa": "^8.0.1",
"fastify": "^5.0.0",
"require-inject": "^1.4.4",
"simple-get": "^4.0.1",
"tap": "^21.0.1",
"tsup": "^7.2.0",
"typescript": "^5.5.3",
"uvu": "^0.5.3",
"ws": "^8.9.0"
},
"publishConfig": {
"access": "public"
}
}