tlsclientwrapper
Version:
A wrapper for `bogdanfinn/tls-client` based on koffi for unparalleled performance and usability. Inspired by @dryft/tlsclient
90 lines • 2.06 kB
JSON
{
"name": "tlsclientwrapper",
"version": "4.3.0",
"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"
}
},
"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"
},
"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"
}
}