Initial commit

This commit is contained in:
xrkffgg
2021-03-10 13:38:05 +08:00
commit d4ec9b4ffc
11 changed files with 729 additions and 0 deletions

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "action-js-template",
"version": "0.0.1",
"private": true,
"description": "A javascript template for rapid development of GitHub actions.",
"main": "src/main.js",
"scripts": {
"package": "ncc build",
"format": "prettier --write src/*.js",
"format-check": "prettier --check src/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/actions-cool/action-js-template",
"branch": "main"
},
"author": "xrkffgg",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@octokit/rest": "^18.0.14"
},
"devDependencies": {
"@umijs/fabric": "^2.5.6",
"@vercel/ncc": "^0.27.0",
"prettier": "^2.2.1"
}
}