-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.65 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
{
"name": "urllib",
"version": "4.9.0",
"description": "Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, timeout and more. Base undici API.",
"keywords": [
"curl",
"fetch",
"http",
"https",
"request",
"undici",
"urllib",
"urlopen",
"wget"
],
"homepage": "https://github.com/node-modules/urllib",
"license": "MIT",
"author": "fengmk2 <fengmk2@gmail.com> (https://github.com/fengmk2)",
"repository": {
"type": "git",
"url": "git://github.com/node-modules/urllib.git"
},
"files": [
"dist",
"src"
],
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"tag": "latest"
},
"scripts": {
"typecheck": "tsc --noEmit && tsgo --noEmit",
"build": "vp pack",
"build:esm:test": "node test/esm/index.js",
"build:mts:test": "tsc -p test/mts",
"build:test": "vp run build && vp run build:esm:test && vp run build:mts:test && vp run test-tsc",
"test-tsc": "vp run test-tsc:esm",
"test-tsc:esm": "tsc -p test/fixtures/ts-esm && node test/fixtures/ts-esm/hello.js",
"test": "vp run check && vp test run --reporter=dot",
"bench": "vp test bench",
"test-keepalive": "cross-env TEST_KEEPALIVE_COUNT=50 vp test run --reporter=dot --test-timeout 180000 keep-alive-header.test.ts",
"cov": "vp test run --reporter=dot --coverage",
"ci": "vp run cov && vp run build:test && npm pack",
"clean": "rm -rf dist && tsc -b --clean",
"prepublishOnly": "vp run build",
"prepare": "vp config",
"check": "vp check",
"check:fix": "vp check --fix"
},
"dependencies": {
"form-data": "^4.0.5",
"formstream": "^1.5.2",
"mime-types": "^2.1.35",
"qs": "^6.15.0",
"type-fest": "^4.41.0",
"undici": "^8.10.0",
"ylru": "^2.0.0"
},
"devDependencies": {
"@eggjs/tsconfig": "^2.0.0",
"@types/busboy": "^1.5.4",
"@types/mime-types": "^2.1.4",
"@types/node": "^24.13.3",
"@types/qs": "^6.15.0",
"@types/selfsigned": "^2.1.0",
"@types/tar-stream": "^2.2.3",
"@typescript/native-preview": "beta",
"@vitest/coverage-v8": "catalog:",
"busboy": "^1.6.0",
"cross-env": "^10.1.0",
"iconv-lite": "^0.7.0",
"proxy": "^4.0.0",
"selfsigned": "^3.0.1",
"tar-stream": "^2.2.0",
"typescript": "^7.0.0",
"vite": "catalog:",
"vite-plus": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": ">= 22.19.0"
},
"packageManager": "pnpm@12.5.1"
}