add ability to authenticate to registry

This commit is contained in:
2023-08-18 21:25:38 -07:00
parent 4d4170efa7
commit c5b78bf494
4 changed files with 142 additions and 12 deletions

View File

@@ -1,15 +1,16 @@
{
"private": true,
"scripts": {
"lint": "eslint .",
"prepare": "ncc build index.js -o dist --source-map --license licenses.txt",
"all": "npm run lint && npm run prepare"
"lint": "eslint .",
"prepare": "ncc build index.js -o dist --source-map --license licenses.txt",
"all": "npm run lint && npm run prepare"
},
"dependencies": {
"@actions/core": "^1.10.0"
"@actions/core": "^1.10.0",
"form-urlencoded": "^6.1.0"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"eslint": "^8.37.0"
"@vercel/ncc": "^0.36.1",
"eslint": "^8.37.0"
}
}
}