-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.37 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
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
{
"name": "tlsclientwrapper",
"version": "1.0.2",
"description": "A wrapper for `bogdanfinn/tls-client` based on koffi for unparalleled performance and usability. Inspired by @dryft/tlsclient",
"keywords": [
"client",
"connect",
"delete",
"fingerprints",
"get",
"head",
"http",
"httprequests",
"https",
"options",
"patch",
"post",
"put",
"request",
"requests",
"tls",
"tls-client",
"tls_client",
"tlsclient",
"trace"
],
"homepage": "https://github.com/DemonMartin/tlsClient#readme",
"bugs": {
"url": "https://github.com/DemonMartin/tlsClient/issues"
},
"license": "ISC",
"author": "DemonMartin",
"repository": {
"type": "git",
"url": "git+https://github.com/DemonMartin/tlsClient.git"
},
"files": [
"dist/**/*",
"src/**/*",
"README.md"
],
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"default": "./dist/index.mjs"
},
"./dist/*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.mjs",
"require": "./dist/*.cjs"
}
},
"scripts": {
"build": "tsup",
"type-check": "tsc --noEmit",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix",
"format": "oxfmt .",
"format:check": "oxfmt . --check",
"test:simple_request": "tsx tests/test.simple_request.ts",
"test:simple_request:cjs": "node tests/test.simple_request.cjs"
},
"dependencies": {
"koffi": "^3.1.1",
"piscina": "^5.3.0"
},
"devDependencies": {
"@types/node": "^26.1.1",
"oxfmt": "^0.59.0",
"oxlint": "^1.74.0",
"oxlint-tsgolint": "^0.25.0",
"tsup": "^8.5.1",
"tsx": "^4.23.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@11.15.1"
}