package.json 793 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "openai-proxy-api",
  3. "version": "2025.7.4",
  4. "description": "RESTful API proxy for OpenAI with streaming support",
  5. "main": "index.js",
  6. "private": true,
  7. "scripts": {
  8. "start": "node main.js",
  9. "dev": "nodemon main.js",
  10. "build": "NODE_ENV=production webpack --config webpack.config.js",
  11. "test": "echo \"Error: no test specified\" && exit 1"
  12. },
  13. "keywords": [
  14. "openai",
  15. "api",
  16. "proxy",
  17. "streaming",
  18. "nodejs",
  19. "express"
  20. ],
  21. "author": "",
  22. "license": "MIT",
  23. "dependencies": {
  24. "cors": "^2.8.5",
  25. "express": "^4.18.2",
  26. "openai": "^4.20.1",
  27. "pino": "^9.7.0",
  28. "pino-pretty": "^13.0.0"
  29. },
  30. "devDependencies": {
  31. "webpack": "^5.99.9",
  32. "webpack-cli": "^6.0.1"
  33. },
  34. "engines": {
  35. "node": ">=16.0.0"
  36. }
  37. }