-
-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.96 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
{
"name": "@tinyhttp/monorepo",
"version": "0.0.1",
"private": true,
"repository": "https://github.com/tinyhttp/tinyhttp.git",
"author": {
"name": "v1rtl",
"email": "yo@v1rtl.site"
},
"license": "MIT",
"type": "module",
"engines": {
"node": ">=14.21.3",
"pnpm": ">=8"
},
"devDependencies": {
"@biomejs/biome": "2.3.7",
"@changesets/cli": "2.31.0",
"@commitlint/cli": "21.0.1",
"@commitlint/config-conventional": "21.0.1",
"@types/node": "24.10.1",
"@vitest/coverage-v8": "^4.1.6",
"c8": "^11.0.0",
"eta": "2.2.0",
"header-range-parser": "1.1.4",
"husky": "9.1.7",
"regexparam": "3.0.0",
"supertest-fetch": "2.0.0",
"typescript": "~6.0.3",
"vitest": "4.1.6"
},
"scripts": {
"prerelease": "pnpm lint && pnpm build && pnpm test",
"chgset:run": "changeset",
"chgset:version": "changeset version && pnpm install && biome check . --write",
"chgset": "pnpm chgset:run && pnpm chgset:version",
"release": "pnpm -r publish --access public --provenance --no-git-checks",
"test:dev": "vitest --dir tests",
"test:coverage": "vitest run --dir tests --coverage",
"test": "pnpm test:coverage",
"lint": "biome lint .",
"format": "biome format .",
"check": "biome check .",
"echo:ancestor": "echo ${ANCESTOR_REF:-$(git merge-base origin/master HEAD)}",
"build": "pnpm -r build",
"prepare": "husky"
},
"packageManager": "pnpm@11.1.2",
"pnpm": {
"overrides": {
"es-define-property": "npm:@socketregistry/es-define-property@^1",
"es-set-tostringtag": "npm:@socketregistry/es-set-tostringtag@^1",
"function-bind": "npm:@socketregistry/function-bind@^1",
"gopd": "npm:@socketregistry/gopd@^1",
"has-symbols": "npm:@socketregistry/has-symbols@^1",
"has-tostringtag": "npm:@socketregistry/has-tostringtag@^1",
"hasown": "npm:@socketregistry/hasown@^1",
"safer-buffer": "npm:@socketregistry/safer-buffer@^1"
}
}
}