-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 1.91 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
{
"name": "aws-sigv4-fetch",
"version": "4.1.0",
"description": "SignatureV4 fetch implemented with official @aws-sdk v3",
"packageManager": "[email protected]",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"test:coverage": "vitest --coverage.enabled --coverage.provider=v8 --coverage.reporter=json-summary --coverage.reporter=json --coverage.reporter=text-summary --coverage.reporter=html",
"build": "tsup && attw --pack .",
"watch": "tsup --watch src",
"prepublishOnly": "pnpm build",
"lint": "pnpm biome check --write --no-errors-on-unmatched src test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zirkelc/aws-sigv4-fetch.git"
},
"bugs": {
"url": "https://github.com/zirkelc/aws-sigv4-fetch/issues"
},
"homepage": "https://github.com/zirkelc/aws-sigv4-fetch#readme",
"license": "MIT",
"dependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/credential-provider-node": "^3.609.0",
"@aws-sdk/types": "^3.609.0",
"@smithy/protocol-http": "^4.0.3",
"@smithy/signature-v4": "^3.1.2"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.4",
"@biomejs/biome": "1.8.3",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.9.0",
"@vitest/coverage-v8": "^2.0.4",
"@vitest/ui": "^2.0.5",
"cross-fetch": "^4.0.0",
"np": "^10.0.6",
"pkg-pr-new": "^0.0.30",
"tsup": "^8.1.0",
"tsx": "^4.17.0",
"typescript": "^5.5.3",
"vitest": "^2.0.5",
"vitest-github-actions-reporter": "^0.11.1"
}
}