-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
40 lines (40 loc) · 875 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
{
"name": "node-tls-client",
"version": "2.0.0",
"description": "Advanced library based on node-fetch and tls-client.",
"main": "dist/index.js",
"typings": "typings/index.d.ts",
"repository": "https://github.com/Sahil1337/node-tls-client",
"author": "Sahil1337",
"license": "GPL-3.0",
"private": false,
"scripts": {
"build": "tsc",
"docs": "typedoc --out docs src/index.ts"
},
"keywords": [
"tls-client",
"node-tls-client",
"javascript",
"typescript",
"tls client",
"tls",
"cloudflare"
],
"devDependencies": {
"@types/node": "^20.12.12",
"@types/tough-cookie": "^4.0.5",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"dependencies": {
"koffi": "^2.8.9",
"tough-cookie": "^4.1.4",
"tslib": "^2.6.2",
"workerpool": "^9.2.0"
},
"files": [
"dist",
"typings"
]
}