-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
121 lines (121 loc) · 3.26 KB
/
package.json
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "http-cookie-agent",
"version": "6.0.8",
"description": "Allows cookies with every Node.js HTTP clients.",
"keywords": [
"agent",
"axios",
"cookies",
"fetch",
"got",
"http",
"https",
"needle",
"node-fetch",
"phin",
"request",
"superagent",
"tough-cookie",
"urllib",
"undici"
],
"homepage": "https://github.com/3846masa/http-cookie-agent#readme",
"bugs": {
"url": "https://github.com/3846masa/http-cookie-agent/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/3846masa/http-cookie-agent.git"
},
"funding": "https://github.com/sponsors/3846masa",
"license": "MIT",
"author": "3846masa <3846masahiro+git@gmail.com>",
"exports": {
"./http": "./http/index.js",
"./undici": "./undici/index.js"
},
"files": [
"dist",
"undici",
"http",
"!**/__tests__"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "pnpm run --parallel \"/^build:.*/\"",
"build:cjs": "babel src --out-dir dist --extensions .ts --out-file-extension .js",
"build:mjs": "babel src --out-dir dist --extensions .mts --out-file-extension .mjs",
"format": "pnpm run --sequential \"/^format:.*/\"",
"format:eslint": "eslint --fix .",
"format:prettier": "prettier --write .",
"lint": "pnpm run \"/^lint:.*/\"",
"lint:dts": "tsc --noEmit http/*.d.ts undici/*.d.ts",
"lint:eslint": "eslint --max-warnings 0 .",
"lint:prettier": "prettier --check .",
"lint:tsc": "tsc --noEmit",
"semantic-release": "semantic-release",
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" jest"
},
"dependencies": {
"agent-base": "^7.1.3"
},
"devDependencies": {
"@3846masa/configs": "github:3846masa/configs#9e515f045bfee4d597065c20e02dee32cd0f7966",
"@babel/cli": "7.26.4",
"@babel/core": "7.26.7",
"@babel/plugin-proposal-explicit-resource-management": "7.25.9",
"@babel/preset-env": "7.26.7",
"@babel/preset-typescript": "7.26.0",
"@hapi/wreck": "18.1.0",
"@jest/globals": "29.7.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/babel__core": "7.20.5",
"@types/needle": "3.3.0",
"@types/node": "18.19.74",
"@types/request": "2.48.12",
"@types/semver": "7.5.8",
"@types/superagent": "8.1.9",
"agentkeepalive": "4.5.0",
"axios": "1.7.9",
"babel-jest": "29.7.0",
"disposablestack": "1.1.7",
"got": "12.6.1",
"http-proxy-agent": "7.0.2",
"jest": "29.7.0",
"needle": "3.3.1",
"node-fetch": "3.3.2",
"phin": "3.7.1",
"proxy": "2.2.0",
"request": "2.88.2",
"rimraf": "5.0.10",
"semantic-release": "22.0.12",
"semver": "7.7.0",
"superagent": "10.1.1",
"tough-cookie": "5.1.0",
"typescript": "5.7.3",
"undici": "6.21.1",
"urllib": "4.4.0"
},
"peerDependencies": {
"tough-cookie": "^4.0.0 || ^5.0.0",
"undici": "^5.11.0 || ^6.0.0"
},
"peerDependenciesMeta": {
"undici": {
"optional": true
}
},
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=18.0.0"
},
"pnpm": {
"overrides": {
"urllib>undici": "$undici"
},
"patchedDependencies": {
"@semantic-release/git@10.0.1": "patches/@semantic-release__git@10.0.1.patch"
}
}
}