1{
2  "name": "socks",
3  "private": false,
4  "version": "2.8.0",
5  "description": "Fully featured SOCKS proxy client supporting SOCKSv4, SOCKSv4a, and SOCKSv5. Includes Bind and Associate functionality.",
6  "main": "build/index.js",
7  "typings": "typings/index.d.ts",
8  "homepage": "https://github.com/JoshGlazebrook/socks/",
9  "repository": {
10    "type": "git",
11    "url": "https://github.com/JoshGlazebrook/socks.git"
12  },
13  "bugs": {
14    "url": "https://github.com/JoshGlazebrook/socks/issues"
15  },
16  "keywords": [
17    "socks",
18    "proxy",
19    "tor",
20    "socks 4",
21    "socks 5",
22    "socks4",
23    "socks5"
24  ],
25  "engines": {
26    "node": ">= 16.0.0",
27    "npm": ">= 3.0.0"
28  },
29  "author": "Josh Glazebrook",
30  "contributors": [
31    "castorw"
32  ],
33  "license": "MIT",
34  "readmeFilename": "README.md",
35  "devDependencies": {
36    "@types/mocha": "^10.0.6",
37    "@types/node": "^20.11.17",
38    "@typescript-eslint/eslint-plugin": "^6.21.0",
39    "@typescript-eslint/parser": "^6.21.0",
40    "eslint": "^8.20.0",
41    "mocha": "^10.0.0",
42    "prettier": "^3.2.5",
43    "ts-node": "^10.9.1",
44    "typescript": "^5.3.3"
45  },
46  "dependencies": {
47    "ip-address": "^9.0.5",
48    "smart-buffer": "^4.2.0"
49  },
50  "scripts": {
51    "prepublish": "npm install -g typescript && npm run build",
52    "test": "NODE_ENV=test mocha --recursive --require ts-node/register test/**/*.ts",
53    "prettier": "prettier --write ./src/**/*.ts --config .prettierrc.yaml",
54    "lint": "eslint 'src/**/*.ts'",
55    "build": "rm -rf build typings && prettier --write ./src/**/*.ts --config .prettierrc.yaml && tsc -p ."
56  }
57}
58