@ne0n0us/curl-proxy 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,85 @@
1
+ {
2
+ "name": "@ne0n0us/curl-proxy",
3
+ "description": "Unauthenticated, non-caching, Node.js HTTP(S) proxy that supports batch requests and is driven by URL query.",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "git+https://github.com/NE0N0US/curl-proxy.git"
7
+ },
8
+ "bugs": {
9
+ "url": "https://github.com/NE0N0US/curl-proxy/issues"
10
+ },
11
+ "homepage": "https://curl-proxy.vercel.app/",
12
+ "author": {
13
+ "name": "NE0N0US",
14
+ "url": "https://ne0n0us.github.io/"
15
+ },
16
+ "license": "Apache-2.0",
17
+ "version": "0.1.4",
18
+ "engines": {
19
+ "node": ">=22.11.0"
20
+ },
21
+ "scripts": {
22
+ "start": "vercel dev --listen 0.0.0.0:2077",
23
+ "prepublishOnly": "tsup --format esm --target es2024 --dts --tsconfig tsconfig.json --treeshake safest src/lib/proxy/index.ts"
24
+ },
25
+ "dependencies": {
26
+ "@jitl/quickjs-wasmfile-release-sync": "^0.32.0",
27
+ "quickjs-emscripten-core": "^0.32.0",
28
+ "quickjs-emscripten-sync": "^1.11.0"
29
+ },
30
+ "devDependencies": {
31
+ "@types/node": "^24.0.0",
32
+ "tsup": "^8.5.1",
33
+ "vercel": "^55.0.0"
34
+ },
35
+ "publishConfig": {
36
+ "access": "public"
37
+ },
38
+ "sideEffects": false,
39
+ "type": "module",
40
+ "types": "./dist/index.d.ts",
41
+ "exports": {
42
+ ".": {
43
+ "types": "./dist/index.d.ts",
44
+ "import": "./dist/index.js",
45
+ "default": "./dist/index.js"
46
+ }
47
+ },
48
+ "files": [
49
+ "dist",
50
+ "NOTICE"
51
+ ],
52
+ "peerDependencies": {
53
+ "@jitl/quickjs-wasmfile-release-sync": "^0.32.0",
54
+ "quickjs-emscripten-core": "^0.32.0",
55
+ "quickjs-emscripten-sync": "^1.11.0"
56
+ },
57
+ "keywords": [
58
+ "node",
59
+ "undici",
60
+ "vercel",
61
+ "quickjs",
62
+ "wasm",
63
+ "backend",
64
+ "serverless",
65
+ "app",
66
+ "http",
67
+ "https",
68
+ "h2",
69
+ "rest",
70
+ "api",
71
+ "fetch",
72
+ "proxy",
73
+ "orchestration",
74
+ "url",
75
+ "header",
76
+ "cors",
77
+ "retry",
78
+ "timeout",
79
+ "throttle",
80
+ "stream",
81
+ "transform",
82
+ "eval",
83
+ "vm"
84
+ ]
85
+ }