-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.45 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
{
"name": "@otterhttp/monorepo",
"private": true,
"repository": "https://github.com/otterjs/otterhttp.git",
"author": "lordfirespeed <[email protected]>",
"license": "LGPL-3.0-or-later",
"type": "module",
"engines": {
"node": ">=20.16.0",
"pnpm": ">=8"
},
"devDependencies": {
"@biomejs/biome": "1.8.2",
"@changesets/cli": "2.27.6",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/node": "^22.8.1",
"@vitest/coverage-istanbul": "^2.0.5",
"eta": "2.2.0",
"header-range-parser": "^1.1.3",
"husky": "9.0.11",
"ipaddr.js": "^2.2.0",
"jsonwebtoken": "9.0.2",
"regexparam": "3.0.0",
"supertest-fetch": "1.5.0",
"tsup": "^8.2.4",
"typescript": "~5.5.2",
"vitest": "2.0.5"
},
"scripts": {
"prerelease": "pnpm lint && pnpm build && pnpm test",
"changeset": "changeset",
"ci:version": "pnpm exec changeset version && pnpm check:fix && pnpm install --no-frozen-lockfile",
"ci:publish": "pnpm build && pnpm exec changeset publish",
"test:dev": "vitest --dir tests",
"test:coverage": "vitest run --dir tests --coverage --silent",
"test": "vitest run --dir tests",
"check": "biome check .",
"check:fix": "biome check --write .",
"build": "pnpm -r build",
"type-check": "tsc --noEmit",
"prepare": "husky"
},
"packageManager": "[email protected]+sha256.e1f9e8d1a16607a46dd3c158b5f7a7dc7945501d1c6222d454d63d033d1d918f"
}