-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@journeyapps/https-proxy-socket",
"version": "1.0.1",
"author": "JourneyApps",
"repository": "journeyapps/https-proxy-socket",
"license": "MIT",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"exports": {
".": {
"import": {
"default": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts"
},
"require": {
"default": "./lib/cjs/index.js",
"types": "./lib/cjs/index.d.ts"
}
}
},
"bin": {
"mongo-replicas": "lib/esm/bin/mongoReplicas.js"
},
"scripts": {
"ci:publish": "changeset publish && git push --follow-tags",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"clean": "rm -rf ./lib && tsc -b --clean",
"clean:modules": "rm -rf node_modules",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build": "pnpm build:esm && pnpm build:cjs",
"test": "vitest run"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@types/agent-base": "^4.2.0",
"@types/node": "^24.7.2",
"async-listen": "^3.1.0",
"lerna": "^9.0.0",
"node-fetch": "^3.3.2",
"prettier": "^3.6.2",
"proxy": "^2.2.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"dependencies": {
"agent-base": "^7.1.4",
"socks": "^2.8.7"
},
"files": [
"/README.md",
"/lib"
]
}