-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.53 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
{
"name": "tls-impersonate",
"version": "0.0.1",
"description": "TLS fingerprint control within Node.js's normal networking APIs ",
"keywords": [
"TLS",
"fingerprint",
"impersonate",
"openssl",
"extensions",
"control"
],
"homepage": "https://github.com/httptoolkit/tls-impersonate#readme",
"bugs": {
"url": "https://github.com/httptoolkit/tls-impersonate/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/httptoolkit/tls-impersonate.git"
},
"license": "Apache-2.0",
"author": "Tim Perry <tim@httptoolkit.com>",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"gypfile": true,
"files": [
"dist",
"native",
"binding.gyp",
"prebuilds"
],
"engines": {
"node": ">=24.15.0"
},
"os": [
"linux"
],
"scripts": {
"install": "node-gyp-build",
"build": "node-gyp rebuild && tsc",
"build:ts": "tsc",
"prepack": "test -n \"$KEEP_PREBUILDS\" || rm -rf prebuilds",
"prepublishOnly": "tsc",
"test": "TS_NODE_TRANSPILE_ONLY=true mocha"
},
"ts-node": {
"esm": true,
"transpileOnly": true,
"project": "tsconfig.test.json"
},
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^25.3.3",
"@types/semver": "^7.7.1",
"chai": "^6.2.2",
"mocha": "^11.7.5",
"read-tls-client-hello": "^2.0.0",
"semver": "^7.7.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"node-gyp-build": "^4.8.4"
}
}