-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 956 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
{
"name": "@litert/ws-utils",
"version": "0.1.0",
"description": "A C++ native extension providing utilities for WebSocket, in NodeJS.",
"main": "build/Release/ws-utils.node",
"types": "index.d.ts",
"typings": "index.d.ts",
"scripts": {
"build": "./build.sh",
"test": "node test.js",
"prepublishOnly": "rm -rf build ws-utils.node"
},
"dependencies": {
"node-addon-api": "^7.0.0",
"node-gyp": "^10.0.1"
},
"devDependencies": {
"@types/node": "^20.8.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/litert/node-ws-utils.git"
},
"bugs": {
"url": "https://github.com/litert/node-ws-utils/issues"
},
"homepage": "https://github.com/litert/node-ws-utils#readme",
"keywords": [
"litert",
"websocket",
"utility"
],
"author": "Angus.Fenying <fenying@litert.org> (https://fenying.net)",
"license": "Apache-2.0",
"engines": {
"node": ">=16.0.0"
}
}