-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.46 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.46 KB
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
{
"name": "pocket-sockets",
"version": "4.1.0",
"description": "A powerful and smooth client/server sockets library for browser and NodeJS. Supports both WebSockets and regular TCP sockets, TLS encrypted or not.",
"keywords": [
"sockets",
"library",
"browser",
"nodejs",
"websockets",
"raw",
"tcp",
"encrypted",
"encryption",
"networking",
"communication",
"layer"
],
"homepage": "",
"author": "Thomas Backlund",
"repository": {
"type": "git",
"url": "git+https://github.com/bashlund/pocket-sockets.git"
},
"bugs": {
"url": "https://github.com/bashlund/pocket-sockets/issues"
},
"private": false,
"license": "MIT",
"engines": {
"node": ">=12"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test": "testyts",
"docs": "typedoc --entryDocument Home.md --hideBreadcrumbs true --hideInPageTOC true --cleanOutputDir false ./src/*.ts",
"build": "tsc",
"tsc": "tsc",
"lint": "npx eslint ./src",
"prepublishOnly": "tsc"
},
"dependencies": {
"ws": "^8.16.0"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.7",
"@types/node": "^14.17.11",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"testyts": "^1.3.0",
"ts-node": "^9.1.1",
"typedoc": "^0.22.15",
"typedoc-plugin-markdown": "^3.11.0",
"typescript": "^4.3.5"
}
}