fetch-tor-proxy 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.
@@ -0,0 +1 @@
1
+ tor-expert-bundle\tor.exe -f tor-expert-bundle\torcc
Binary file
@@ -0,0 +1,11 @@
1
+ # ExitNodes {de}
2
+ StrictNodes 1
3
+
4
+ GeoIPFile .\tor-expert-bundle\geoip
5
+ GeoIPv6File .\tor-expert-bundle\geoip6
6
+
7
+ UseMicrodescriptors 1
8
+ ClientUseIPv6 0
9
+
10
+ CircuitBuildTimeout 20
11
+ LearnCircuitBuildTimeout 0
package/tsconfig.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2020",
4
+ "module": "commonjs",
5
+ "moduleResolution": "node",
6
+ "lib": ["ES2020"],
7
+ "types": ["node"],
8
+ "strict": true,
9
+ "esModuleInterop": true,
10
+ "skipLibCheck": true,
11
+ "rootDir": "src",
12
+ "outDir": "build",
13
+ "declaration": true,
14
+ "declarationDir": "build",
15
+ "declarationMap": true,
16
+ "sourceMap": true
17
+ },
18
+ "include": ["src/**/*.ts"]
19
+ }