-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
44 lines (44 loc) · 1.27 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
{
"name": "mytls",
"version": "1.0.5",
"description": "Mimic TLS/JA3 fingerprint inside Node with help from Go",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "zeddev",
"scripts": {
"build": "tsc",
"build:windows": "cross-env GOOS=windows go build -o ./dist/index.exe ./golang",
"build:linux": "cross-env GOOS=linux go build -o ./dist/index ./golang && chmod +x ./dist/index",
"build:mac": "cross-env GOOS=darwin go build -o ./dist/index-mac ./golang && chmod +x ./dist/index-mac",
"prepare": "npm run build && npm run build:windows && npm run build:linux && npm run build:mac"
},
"repository": {
"type": "git",
"directory": "git+https://github.com/zedd3v/mytls.git"
},
"keywords": [
"mytls",
"utls",
"ja3",
"spoof",
"fingerprint",
"mimic"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/zedd3v/mytls/issues"
},
"homepage": "https://github.com/zedd3v/mytls#readme",
"dependencies": {
"ws": "^7.3.1"
},
"devDependencies": {
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"cross-env": "^7.0.2",
"eslint": "^7.4.0",
"eslint-plugin-prefer-arrow": "^1.2.1",
"typescript": "^3.9.7"
}
}