forked from BetaHuhn/deploy-to-vercel-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.04 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
{
"name": "deploy-to-vercel-action",
"version": "1.9.11",
"description": "Fork of BetaHuhn/deploy-to-vercel-action with prebuilt deployment support",
"main": "dist/index.js",
"scripts": {
"lint": "eslint ./src",
"dev": "node src/index.js",
"start": "node dist/index.js",
"build": "ncc build src/index.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/betahuhn/deploy-to-vercel-action.git"
},
"keywords": [],
"author": "Maximilian Schiller <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/betahuhn/deploy-to-vercel-action/issues"
},
"homepage": "https://github.com/marketplace/actions/deploy-to-vercel-action",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^4.0.0",
"action-input-parser": "^1.2.38",
"dotenv": "^9.0.2",
"got": "^11.8.3",
"vercel": "^22.0.1"
},
"devDependencies": {
"@betahuhn/config": "^1.2.0",
"@vercel/ncc": "^0.36.0",
"eslint": "^7.32.0"
}
}