UNPKG

@jeembo/cycletls

Version:

Spoof TLS/JA3 fingerprint in JS with help from Go

56 lines (55 loc) 1.76 kB
{ "name": "@jeembo/cycletls", "version": "1.1.0", "description": "Spoof TLS/JA3 fingerprint in JS with help from Go", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "/dist" ], "author": "Danny-Dasilva", "scripts": { "build": "tsc", "build:windows": "cross-env GOOS=windows go build -o ./dist/index.exe ./src", "build:linux": "cross-env GOOS=linux go build -o ./dist/index ./src && chmod +x ./dist/index", "build:arm64": "cross-env GOOS=linux GOARCH=arm64 go build -o ./dist/index-arm64 ./src && chmod +x ./dist/index-arm64", "build:arm": "cross-env GOOS=linux GOARCH=arm go build -o ./dist/index-arm ./src && chmod +x ./dist/index-arm", "build:mac": "cross-env GOOS=darwin go build -o ./dist/index-mac ./src && chmod +x ./dist/index-mac", "prepare": "npm run build && npm run build:windows && npm run build:linux && npm run build:mac", "test": "jest" }, "repository": { "type": "git", "directory": "git+https://github.com/Danny-Dasilva/CycleTLS.git" }, "keywords": [ "cycletls", "utls", "ja3", "spoof", "fingerprint", "mimic" ], "license": "GPL3", "bugs": { "url": "https://github.com/Danny-Dasilva/CycleTLS/issues" }, "homepage": "https://github.com/Danny-Dasilva/CycleTLS#readme", "dependencies": { "@types/node": "^17.0.24", "ws": "^7.5.7" }, "devDependencies": { "@types/jest": "^27.4.1", "@types/ws": "^8.5.3", "@typescript-eslint/eslint-plugin": "^5.19.0", "@typescript-eslint/parser": "^5.19.0", "cross-env": "^7.0.3", "eslint": "^8.13.0", "eslint-plugin-prefer-arrow": "^1.2.3", "jest": "^27.5.1", "ts-jest": "^27.1.4", "typescript": "^4.6.3", "jsdom": "^19.0.0" } }