-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.03 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
{
"name": "@smithy/undici-http-handler",
"version": "3.2.4",
"description": "Smithy-compatible HTTP handler backed by modern, high performance Node.js undici client",
"homepage": "https://github.com/smithy-lang/smithy-typescript/tree/main/packages/undici-http-handler",
"license": "Apache-2.0",
"author": {
"name": "AWS SDK for JavaScript Team",
"email": "",
"url": "https://aws.amazon.com/sdk-for-javascript/"
},
"repository": {
"type": "git",
"url": "https://github.com/smithy-lang/smithy-typescript.git",
"directory": "packages/undici-http-handler"
},
"files": [
"dist-*/**"
],
"sideEffects": false,
"main": "./dist-cjs/index.js",
"module": "./dist-es/index.js",
"types": "./dist-types/index.d.ts",
"typesVersions": {
"<4.5": {
"dist-types/*": [
"dist-types/ts3.4/*"
]
}
},
"scripts": {
"build": "concurrently 'yarn:build:types' 'yarn:build:es:cjs'",
"build:es:cjs": "node ../../scripts/compilation/es_cjs.js",
"build:types": "premove dist-types && yarn g:tsc -p tsconfig.types.json",
"build:types:downlevel": "premove dist-types/ts3.4 && downlevel-dts dist-types dist-types/ts3.4",
"clean": "premove dist-cjs dist-es dist-types",
"extract:docs": "api-extractor run --local",
"test": "yarn g:vitest run",
"test:watch": "yarn g:vitest watch",
"test:integration": "yarn g:vitest run --config vitest.config.integ.mts",
"test:integration:watch": "yarn g:vitest watch --config vitest.config.integ.mts",
"test:bench": "yarn g:vitest bench --config vitest.config.bench.mts"
},
"dependencies": {
"@smithy/core": "workspace:^",
"@smithy/types": "workspace:^",
"tslib": "^2.6.2",
"undici": "^7.0.0"
},
"devDependencies": {
"@metcoder95/https-pem": "^1.0.0",
"@smithy/node-http-handler": "workspace:^",
"@types/node": "^18.11.9",
"concurrently": "7.0.0",
"downlevel-dts": "0.10.1",
"premove": "4.0.0"
},
"peerDependencies": {
"undici": ">=7.0.0"
},
"engines": {
"node": ">=20.18.1"
}
}