34 lines
895 B
JSON
34 lines
895 B
JSON
{
|
|
"name": "app-token-action",
|
|
"private": true,
|
|
"type": "module",
|
|
"version": "1.0.0",
|
|
"description": "GitHub Action for creating a GitHub App Installation Access Token",
|
|
"scripts": {
|
|
"build": "esbuild main.js post.js --bundle --outdir=dist --out-extension:.js=.cjs --platform=node --target=node16.16",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.0",
|
|
"@octokit/auth-app": "^4.0.13",
|
|
"@octokit/request": "^6.2.5"
|
|
},
|
|
"devDependencies": {
|
|
"dotenv": "^16.0.3",
|
|
"esbuild": "^0.17.19"
|
|
},
|
|
"release": {
|
|
"branches": [
|
|
"+([0-9]).x",
|
|
"main"
|
|
],
|
|
"plugins": [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
"@semantic-release/github",
|
|
"semantic-release-plugin-github-breaking-version-tag"
|
|
]
|
|
}
|
|
}
|