{
  "name": "tsocks",
  "version": "3.5.4",
  "private": false,
  "browser": false,
  "author": "Mostafa Izadloo <moizadloo@gmail.com>",
  "description": "SOCKS protocol in typescript",
  "readmeFilename": "README.md",
  "license": "MIT",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "umd:main": "dist/umd/index.js",
  "types": "dist/types/index.d.js",
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "format": "prettier --write \"**/*.{cjs,mjs,html,js,json,md,ts}\"",
    "lint": "eslint .",
    "prepublishOnly": "pinst --disable",
    "postpublish": "pinst --enable",
    "build": "npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types",
    "build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
    "build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
    "build:umd": "node tools/cleanup umd && webpack --config config/webpack.config.js",
    "build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json",
    "clean": "node tools/cleanup",
    "test": "jest --no-cache --runInBand --force-exit",
    "test:cov": "jest --coverage --no-cache --runInBand --force-exit",
    "semantic-release": "semantic-release",
    "prepare": "husky"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "socks",
    "proxy",
    "socks 4",
    "socks 5",
    "socks4",
    "socks5"
  ],
  "homepage": "https://github.com/MoIzadloo/tsocks#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/MoIzadloo/tsocks.git"
  },
  "bugs": {
    "url": "https://github.com/MoIzadloo/tsocks/issues"
  },
  "dependencies": {
    "@types/ip": "^1.1.0",
    "@types/tcp-port-used": "^1.0.1",
    "crypto": "^1.0.1",
    "ip": "^1.1.8",
    "tcp-port-used": "^1.0.2"
  },
  "devDependencies": {
    "@commitlint/cli": "^17.4.2",
    "@commitlint/config-conventional": "^17.3.0",
    "@semantic-release/changelog": "^6.0.2",
    "@semantic-release/git": "^10.0.1",
    "@types/jest": "^29.4.0",
    "@types/node": "^18.11.18",
    "@typescript-eslint/eslint-plugin": "^5.49.0",
    "@typescript-eslint/parser": "^5.49.0",
    "commitlint": "^17.4.2",
    "commitlint-config-gitmoji": "^2.2.10",
    "eslint": "8.22.0",
    "eslint-config-prettier": "^8.6.0",
    "eslint-plugin-prettier": "^4.2.1",
    "eslint-plugin-tsdoc": "^0.2.17",
    "husky": "^9.1.6",
    "jest": "^29.4.2",
    "pinst": "^3.0.0",
    "prettier": "2.8.3",
    "semantic-release-gitmoji": "^1.6.3",
    "ts-jest": "^29.0.5",
    "ts-loader": "^9.4.2",
    "typescript": "^4.9.4",
    "webpack": "^5.75.0",
    "webpack-cli": "^5.0.1"
  }
}
