-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 938 Bytes
/
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
{
"name": "eiows",
"version": "7.1.2",
"description": "custom fork of uWebSockets 0.14",
"license": "MIT",
"main": "./dist/eiows.js",
"types": "./dist/eiows.d.ts",
"os": ["!win32", "linux", "freebsd", "darwin"],
"exports": {
".": {
"import": "./dist/wrapper.mjs",
"require": "./dist/eiows.js",
"types": "./dist/eiows.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"preinstall": "make",
"install": "node-gyp rebuild > build_log.txt 2>&1 || exit 0",
"postinstall": "make clean"
},
"engines": {
"node": ">=16 <23.0"
},
"keywords": [
"websocket",
"engine.io",
"socket.io",
"eiows",
"uws"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mmdevries/eiows.git"
},
"bugs": {
"url": "https://github.com/mmdevries/eiows/issues"
},
"homepage": "https://github.com/mmdevries/eiows",
"gypfile": true
}