multimodalart HF Staff commited on
Commit
2a64b09
·
verified ·
1 Parent(s): f478a41

Create package.json

Browse files
Files changed (1) hide show
  1. package.json +13 -0
package.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "minimal-reverse-proxy",
3
+ "version": "1.0.0",
4
+ "description": "Minimal reverse proxy with request queuing and 503 retry logic",
5
+ "main": "proxy.js",
6
+ "scripts": {
7
+ "start": "node proxy.js"
8
+ },
9
+ "dependencies": {
10
+ "express": "^4.18.2",
11
+ "node-fetch": "^2.7.0"
12
+ }
13
+ }