package.json 493 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "server",
  3. "version": "1.0.0",
  4. "description": "服务端",
  5. "author": "Caner",
  6. "main": "app.js",
  7. "bin": "app.js",
  8. "scripts": {
  9. "build": "pkg . --compress=GZip"
  10. },
  11. "license": "ISC",
  12. "dependencies": {
  13. "aedes": "^0.51.3",
  14. "log4js": "^6.9.1",
  15. "fastify": "^5.2.2",
  16. "sqlite3": "^5.1.7",
  17. "jwt": "^0.2.0",
  18. "util": "^0.12.5"
  19. },
  20. "pkg": {
  21. "targets": [
  22. "node18-linux-arm64"
  23. ],
  24. "output": "Server",
  25. "outputPath": "dist"
  26. }
  27. }