-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "sslkeylogfile",
"version": "0.1.0",
"type": "module",
"description": "Enable SSL/TLS key logging for all connections globally",
"repository": {
"type": "git",
"url": "git+https://github.com/segevfiner/node-sslkeylogfile.git"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./global": {
"types": "./dist/global.d.ts",
"import": "./dist/global.js",
"require": "./dist/global.cjs"
}
},
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"prepack": "pnpm build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"ssl",
"tls",
"sslkeylog",
"sslkeylogfile",
"wireshark"
],
"author": "Segev Finer <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]+sha256.0624e30eff866cdeb363b15061bdb7fd9425b17bc1bb42c22f5f4efdea21f6b3",
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@types/node": "18",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.5"
},
"files": [
"dist"
]
}