-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 2.98 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
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
{
"name": "http-cookie-agent",
"version": "8.0.0",
"description": "Allows cookies with every Node.js HTTP clients.",
"keywords": [
"agent",
"axios",
"cookies",
"fetch",
"got",
"http",
"https",
"needle",
"node-fetch",
"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",
"./undici/v6": "./undici/v6/index.js"
},
"files": [
"dist",
"undici",
"http",
"!**/__tests__"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "babel src --out-dir dist --extensions .ts --out-file-extension .js",
"format": "pnpm run --sequential \"/^format:.*/\"",
"format:eslint": "eslint --fix .",
"format:prettier": "prettier --write .",
"lint": "pnpm run \"/^lint:.*/\"",
"lint:dts": "tsc --ignoreConfig --noEmit http/*.d.ts undici/*.d.ts",
"lint:eslint": "eslint --max-warnings 0 .",
"lint:prettier": "prettier --check .",
"lint:tsc": "tsc --noEmit",
"release": "release-it",
"test": "vitest run"
},
"dependencies": {
"agent-base": "^9.0.0"
},
"devDependencies": {
"@3846masa/configs": "github:3846masa/configs#d1583fc579d159b1b0efe298445db99dd5066da8",
"@babel/cli": "7.29.7",
"@babel/core": "7.29.7",
"@babel/preset-env": "7.29.7",
"@babel/preset-typescript": "7.29.7",
"@hapi/wreck": "18.1.2",
"@release-it/conventional-changelog": "10.0.6",
"@types/babel__core": "7.20.5",
"@types/needle": "3.3.0",
"@types/node": "22.19.17",
"@types/semver": "7.7.1",
"@types/superagent": "8.1.11",
"agentkeepalive": "4.6.0",
"axios": "1.18.1",
"conventional-changelog-conventionalcommits": "9.3.1",
"disposablestack": "1.1.8",
"got": "15.1.0",
"http-proxy-agent": "9.1.0",
"needle": "3.5.0",
"node-fetch": "3.3.2",
"proxy": "4.1.0",
"release-it": "20.2.1",
"rimraf": "6.1.3",
"semver": "7.8.5",
"superagent": "10.3.0",
"tough-cookie": "6.0.2",
"typescript": "6.0.3",
"undici": "8.3.0",
"undici__v6": "npm:undici@6.27.0",
"undici__v7": "npm:undici@7.28.0",
"urllib": "4.9.0",
"vitest": "4.1.10"
},
"peerDependencies": {
"tough-cookie": "^4.0.0 || ^5.0.0 || ^6.0.0",
"undici": "^7.0.0 || ^8.0.0"
},
"peerDependenciesMeta": {
"undici": {
"optional": true
}
},
"packageManager": "pnpm@10.34.5",
"engines": {
"node": ">=22.0.0"
},
"pnpm": {
"overrides": {
"conventional-changelog-conventionalcommits": "$conventional-changelog-conventionalcommits",
"urllib>undici": "$undici"
}
}
}