package.json 397 B

123456789101112131415161718192021
  1. {
  2. "name": "server",
  3. "version": "1.0.0",
  4. "description": "服务端",
  5. "author": "Caner",
  6. "main": "index.js",
  7. "bin": "index.js",
  8. "scripts": {
  9. "build": "pkg . --compress=GZip"
  10. },
  11. "license": "ISC",
  12. "dependencies": {
  13. "log4js": "^6.9.1",
  14. "socket.io": "^4.8.1"
  15. },
  16. "pkg": {
  17. "targets": ["node18-linux-arm64"],
  18. "output": "Server",
  19. "outputPath":"dist"
  20. }
  21. }