package.json 781 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "typescript-socks5",
  3. "version": "1.0.1",
  4. "description": "Typescript implement socks5 server and client",
  5. "type": "commonjs",
  6. "scripts": {
  7. "test": "echo 'Error: no test specified' && exit 1",
  8. "build": "npm install && npx tsc -p tsconfig.json",
  9. "dev-test": "cross-env NODE_ENV=develop npx nodemon -x ts-node ./src/server_test.ts",
  10. "prod-test": "cross-env NODE_ENV=production node ./build/server_test.js"
  11. },
  12. "keywords": [
  13. "socks5",
  14. "typescript"
  15. ],
  16. "author": "Huazai",
  17. "license": "MIT",
  18. "dependencies": {
  19. "dns-sync": "^0.2.1",
  20. "ipaddr.js": "^2.1.0",
  21. "mem-cache": "^0.0.5"
  22. },
  23. "devDependencies": {
  24. "@types/node": "^18.19.28",
  25. "cross-env": "^7.0.3",
  26. "nodemon": "^3.1.0",
  27. "typescript": "^4.9.5"
  28. }
  29. }