-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 852 Bytes
/
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
{
"name": "@ce1ling/create-vercel-cicd",
"version": "1.1.2",
"description": "GitHub Actions CI/CD for Vercel.",
"main": "dist/index.js",
"bin": {
"create-vercel-cicd": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --skipLibCheck src/index.ts --outDir dist",
"prepare": "chmod +x dist/index.js",
"release": "npm run build && npm publish --access public"
},
"repository": {
"type": "git",
"url": "https://github.com/ce1ling/create-vercel-cicd"
},
"bugs": {
"url": "https://github.com/ce1ling/create-vercel-cicd/issues"
},
"author": "Ce1ling",
"license": "MIT",
"keywords": [
"CI/CD",
"Vercel",
"Next.js"
],
"devDependencies": {
"@types/node": "^20",
"inquirer": "^12.0.1",
"typescript": "^5"
},
"engines": {
"node": ">=18"
}
}