-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.16 KB
/
package.json
File metadata and controls
44 lines (44 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
{
"name": "explore-openapi-snapshot",
"version": "2.0.0",
"description": "GitHub Action to create a snapshot of OpenAPI schema at https://explore-openapi.dev/",
"keywords": [
"github-action",
"openapi",
"snapshot"
],
"license": "MIT",
"author": "Patryk Tomczyk - patzick",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "ncc build ./src/index.ts",
"lint": "oxlint --type-aware src",
"format": "oxfmt",
"format:check": "oxfmt --check",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"typecheck": "tsgo --noEmit",
"quality-check": "pnpm build && pnpm typecheck && pnpm lint && pnpm test"
},
"dependencies": {
"@actions/core": "2.0.2",
"@actions/github": "6.0.1"
},
"devDependencies": {
"@types/node": "24.10.1",
"@typescript/native-preview": "7.0.0-dev.20260302.1",
"@vercel/ncc": "0.38.4",
"oxfmt": "0.42.0",
"oxlint": "1.55.0",
"oxlint-tsgolint": "0.18.1",
"typescript": "5.9.3",
"vitest": "4.1.0",
"zod": "4.3.6"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.28.0"
}