-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.16 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
{
"name": "@openapi-spec/repo",
"type": "module",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"prepare": "simple-git-hooks",
"type:check": "pnpm run -r type:check && tsc",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"repo:fix": "sherif --fix",
"sync:sponsors": "node scripts/sync-sponsors.ts && eslint --fix '**/README.md'"
},
"devDependencies": {
"@antfu/eslint-config": "^9.5.1",
"@seriousme/openapi-schema-validator": "^2.9.1",
"@types/node": "^26.4.0",
"@vitest/coverage-v8": "^4.1.11",
"bumpp": "^12.3.0",
"changelogithub": "^15.0.5",
"eslint": "^10.10.0",
"eslint-plugin-format": "^2.0.1",
"lint-staged": "^17.4.1",
"sherif": "^1.13.0",
"simple-git-hooks": "^2.13.1",
"typescript": "^6.0.3",
"unbuild": "^3.6.1",
"vitest": "^4.1.11"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --no-warn-ignored --fix"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "^12.4.1",
"onFail": "download"
}
}
}