forked from amondnet/vercel-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.02 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.02 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": "vercel-prebuilt-deploy",
"private": false,
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/qibergames/vercel-action"
},
"author": {
"name": "QiberGames",
"email": "info@qibergames.com",
"url": "https://qibergames.com"
},
"version": "1.27.6",
"main": "dist/main.js",
"scripts": {
"start": "bun src/main.ts",
"dev": "bun run build --watch",
"build": "bun build src/main.ts --target bun --format esm --outdir dist --minify",
"format": "prettier * --write",
"format-check": "prettier --check index.ts"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@octokit/webhooks-types": "^7.6.1",
"@vercel/client": "^15.0.2",
"@vercel/sdk": "^1.3.1"
},
"devDependencies": {
"prettier": "^3.4.2",
"@types/bun": "latest"
},
"keywords": [
"GitHub",
"Actions",
"Vercel"
],
"peerDependencies": {
"typescript": "^5.0.0"
}
}