package.json 508 B

12345678910111213141516171819202122
  1. {
  2. "name": "Typescript socks5",
  3. "version": "1.0.0",
  4. "description": "Typescript implement socks5 server and client",
  5. "type": "module",
  6. "module": "es6",
  7. "scripts": {
  8. "build": "npm install && npx tsc -p tsconfig.json"
  9. },
  10. "keywords": ["socks5", "typescript"],
  11. "author": "Huazai",
  12. "license": "MIT",
  13. "dependencies": {
  14. "dns-sync": "^0.2.1",
  15. "ipaddr.js": "^2.0.1",
  16. "mem-cache": "^0.0.5"
  17. },
  18. "devDependencies": {
  19. "@types/node": "^18.11.9",
  20. "typescript": "^4.9.3"
  21. }
  22. }