@journeyapps/https-proxy-socket 0.0.0-dev.ac34e0c → 0.0.0-dev.c646847

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.
File without changes
package/package.json CHANGED
@@ -1,21 +1,26 @@
1
1
  {
2
2
  "name": "@journeyapps/https-proxy-socket",
3
- "version": "0.0.0-dev.ac34e0c",
3
+ "version": "0.0.0-dev.c646847",
4
4
  "author": "JourneyApps",
5
5
  "repository": "journeyapps/https-proxy-socket",
6
6
  "license": "MIT",
7
7
  "type": "module",
8
8
  "main": "./lib/cjs/index.cjs",
9
- "module": "./lib/esm/index.js",
10
- "types": "./lib/esm/index.d.ts",
9
+ "module": "./lib/esm/index.mjs",
11
10
  "exports": {
12
11
  ".": {
13
- "import": "./lib/esm/index.js",
14
- "require": "./lib/cjs/index.cjs"
12
+ "import": {
13
+ "default": "./lib/esm/index.mjs",
14
+ "types": "./lib/esm/index.d.ts"
15
+ },
16
+ "require": {
17
+ "default": "./lib/cjs/index.cjs",
18
+ "types": "./lib/cjs/index.d.ts"
19
+ }
15
20
  }
16
21
  },
17
22
  "bin": {
18
- "mongo-replicas": "lib/esm/bin/mongoReplicas.js"
23
+ "mongo-replicas": "lib/esm/bin/mongoReplicas.mjs"
19
24
  },
20
25
  "devDependencies": {
21
26
  "@types/agent-base": "^4.2.0",
@@ -32,6 +37,18 @@
32
37
  "agent-base": "^6.0.2",
33
38
  "socks": "^2.8.7"
34
39
  },
40
+ "./HttpsProxySocket": {
41
+ "require": "./lib/cjs/HttpsProxySocket.cjs",
42
+ "import": "./lib/esm/HttpsProxySocket.mjs"
43
+ },
44
+ "./tediousPatch": {
45
+ "require": "./lib/cjs/tediousPatch.cjs",
46
+ "import": "./lib/esm/tediousPatch.mjs"
47
+ },
48
+ "./mongoPatch": {
49
+ "require": "./lib/cjs/mongoPatch.cjs",
50
+ "import": "./lib/esm/mongoPatch.mjs"
51
+ },
35
52
  "files": [
36
53
  "/README.md",
37
54
  "/lib"
@@ -41,9 +58,7 @@
41
58
  "ci:version": "changeset version && pnpm install --no-frozen-lockfile",
42
59
  "clean": "rm -rf ./lib && tsc -b --clean",
43
60
  "clean:modules": "rm -rf node_modules",
44
- "build:esm": "tsc -p tsconfig.esm.json",
45
- "build:cjs": "tsc -p tsconfig.cjs.json",
46
- "build": "pnpm build:esm && pnpm build:cjs",
61
+ "build": "node scripts/build.js",
47
62
  "test": "vitest run"
48
63
  }
49
64
  }
File without changes
File without changes
File without changes
File without changes