-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 896 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 896 Bytes
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
{
"name": "docs-preview-action",
"version": "0.1.0",
"private": true,
"description": "Docs Preview: setup, change detection, Vercel deploy, GitHub deployments/status, and sticky PR comments with GitHub App auth.",
"author": "GitHub Actions",
"license": "MIT",
"main": "dist/index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "ncc build src/main.ts -o dist -m",
"check-types": "tsc --noEmit",
"test": "vitest run",
"fmt": "biome format --write . && biome check --formatter-enabled=false --linter-enabled=false --write",
"lint": "biome lint ./src"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"@actions/glob": "^0.5.0",
"@octokit/auth-app": "^6.1.2",
"@octokit/graphql-schema": "^15.26.0",
"tsx": "^4.19.3",
"vercel": "^46.0.0"
},
"devDependencies": {
"@types/node": "^24.3.0",
"@vercel/ncc": "^0.38.3"
}
}