forked from BetaHuhn/deploy-to-vercel-action
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 KB
/
package.json
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
{
"name": "deploy-to-vercel-action",
"version": "2.5.0",
"description": "Deploy your project to Vercel using GitHub Actions. Supports PR previews and GitHub deployments.",
"type": "commonjs",
"main": "dist/index.js",
"scripts": {
"lint": "biome check",
"lint:fix": "biome check --write",
"dev": "node src/index.js",
"start": "node dist/index.js",
"build": "ncc build src/index.js --target es6 -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mountainash/deploy-to-vercel-action.git"
},
"keywords": ["vercel", "deploy", "deployment", "github action", "upload"],
"author": "Maximilian Schiller <[email protected]>",
"contributors": [
{
"name": "@mountainash",
"url": "https://mountainash.id.au/",
"github": "mountainash"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mountainash/deploy-to-vercel-action/issues"
},
"homepage": "https://github.com/marketplace/actions/deploy-to-vercel-action",
"dependencies": {
"@actions/core": "1.11.1",
"@actions/exec": "1.1.1",
"@actions/github": "6.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "20.17.23",
"@vercel/ncc": "0.38.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
}
}