-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 loc) · 1.29 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
{
"name": "aws-sigv4",
"private": true,
"packageManager": "pnpm@9.3.0",
"type": "module",
"scripts": {
"test:unit": "vitest --project=unit/*",
"test:e2e": "vitest --project=e2e/*",
"test:cov": "pnpm test:unit --coverage.enabled --coverage.provider=v8 --coverage.reporter=json-summary --coverage.reporter=json",
"build": "pnpm -r build",
"lint": "pnpm biome check --write --no-errors-on-unmatched .",
"release": "pnpm build && pnpm changeset:publish",
"changeset:init": "changeset init",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.4",
"@biomejs/biome": "1.8.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@changesets/get-github-info": "^0.6.0",
"@total-typescript/tsconfig": "^1.0.4",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.9.0",
"@vitest/coverage-v8": "^2.0.4",
"@vitest/ui": "^2.0.5",
"cdk": "^2.173.2",
"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",
"undici": "^7.1.0",
"undici-types": "^7.1.0",
"vitest": "^2.0.5",
"vitest-github-actions-reporter": "^0.11.1"
}
}