Add initial POC of uber proxy

This commit is contained in:
William Oldham
2023-12-17 20:05:54 +00:00
parent 040bf3b0bc
commit e6779cc38e
5 changed files with 661 additions and 1999 deletions

View File

@@ -3,29 +3,24 @@
"version": "1.0.0",
"private": true,
"scripts": {
"prepare": "nitropack prepare",
"dev": "nitropack dev",
"build": "nitropack build",
"build:cloudflare": "NITRO_PRESET=cloudflare npm run build",
"build:aws": "NITRO_PRESET=aws_lambda npm run build",
"build:node": "NITRO_PRESET=node-server npm run build",
"start": "node .output/server/index.mjs",
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --fix --ext .ts src/",
"dev": "wrangler dev src/index.ts",
"deploy": "wrangler deploy --minify src/index.ts",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@movie-web/providers": "^1.1.5",
"h3": "^1.9.0",
"nitropack": "latest"
"hono": "^3.11.8",
"zod": "^3.22.4"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20231121.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-prettier": "^5.0.1"
"eslint-plugin-prettier": "^5.0.1",
"wrangler": "^3.21.0"
}
}