-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.46 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.46 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
{
"name": "@rivuty/http-expect",
"version": "1.0.0",
"description": "Vitest matchers for HTTP response status codes",
"keywords": [
"matchers",
"typescript",
"vitest"
],
"license": "MIT",
"author": "Oleg Michailov",
"repository": {
"type": "git",
"url": "https://github.com/rivuty/http-expect.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/vitest.d.ts",
"import": "./dist/vitest.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vite build",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt --check",
"format:fix": "oxfmt --write",
"typecheck": "tsc",
"test": "vitest run",
"verify": "run-p -c lint format typecheck test",
"prepublishOnly": "run-p -c verify build",
"release": "release-it"
},
"dependencies": {
"@rivuty/http-status": "^2.0.1"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/types": "^20.5.0",
"@rivuty/oxfmt-config": "^1.0.0",
"@rivuty/oxlint-config": "^1.2.0",
"@types/node": "^25.5.0",
"lefthook": "^2.1.4",
"npm-run-all2": "^8.0.4",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"oxlint-tsgolint": "^0.20.0",
"release-it": "^19.2.4",
"typescript": "^6.0.2",
"vite": "^8.0.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.0"
},
"packageManager": "pnpm@10.32.1"
}