@qriton/gateway 1.0.0
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.
Potentially problematic release.
This version of @qriton/gateway might be problematic. Click here for more details.
- package/LICENSE +66 -0
- package/README.md +142 -0
- package/bin/run.js +36 -0
- package/dist/bundle.js +265 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@qriton/gateway",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Secure-by-design reverse proxy with auto-HTTPS, WAF, and neural anomaly detection",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"qriton-gateway": "./bin/run.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"test": "node --test test/*.test.js",
|
|
11
|
+
"dev": "node --watch src/index.js",
|
|
12
|
+
"build": "npx esbuild src/index.js --bundle --platform=node --target=node18 --outfile=dist/bundle.js --minify --legal-comments=none --external:pino-pretty"
|
|
13
|
+
},
|
|
14
|
+
"engines": {
|
|
15
|
+
"node": ">=18.0.0"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"bin/run.js",
|
|
19
|
+
"dist/bundle.js",
|
|
20
|
+
"README.md",
|
|
21
|
+
"LICENSE"
|
|
22
|
+
],
|
|
23
|
+
"keywords": [
|
|
24
|
+
"reverse-proxy",
|
|
25
|
+
"https",
|
|
26
|
+
"ssl",
|
|
27
|
+
"tls",
|
|
28
|
+
"lets-encrypt",
|
|
29
|
+
"acme",
|
|
30
|
+
"waf",
|
|
31
|
+
"security",
|
|
32
|
+
"gateway",
|
|
33
|
+
"proxy",
|
|
34
|
+
"load-balancer",
|
|
35
|
+
"anomaly-detection",
|
|
36
|
+
"firewall",
|
|
37
|
+
"neural-network",
|
|
38
|
+
"hopfield"
|
|
39
|
+
],
|
|
40
|
+
"author": "Qriton <hello@qriton.io>",
|
|
41
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
42
|
+
"homepage": "https://qriton.io/gateway",
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "git+https://github.com/qriton/gateway.git"
|
|
46
|
+
},
|
|
47
|
+
"bugs": {
|
|
48
|
+
"url": "https://github.com/qriton/gateway/issues"
|
|
49
|
+
},
|
|
50
|
+
"funding": {
|
|
51
|
+
"type": "commercial",
|
|
52
|
+
"url": "https://qriton.io/gateway/pricing"
|
|
53
|
+
}
|
|
54
|
+
}
|