All checks were successful
/ run (push) Successful in 13s
- Updated start script in package.json to include additional permissions for Deno. - Added AWS SDK dependency for S3 operations. - Implemented downloadFile and uploadFile functions in s3.ts for S3 interactions. - Created notify function in notify.ts to send notifications via SMS webhook. - Modified getBios function in index.ts to compare current and new BIOS versions, upload new data to S3, and send notifications if new versions are found.
21 lines
487 B
JSON
21 lines
487 B
JSON
{
|
|
"name": "check-bios",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"lint": "eslint .",
|
|
"start": "deno --allow-env --allow-read --allow-net --allow-sys src/index.ts"
|
|
},
|
|
"dependencies": {
|
|
"@aws-sdk/client-s3": "^3.820.0",
|
|
"node-html-parser": "^7.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.24.0",
|
|
"@types/node": "^22.14.0",
|
|
"eslint": "^9.24.0",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "^8.29.0"
|
|
}
|
|
}
|