Initial commit

This commit is contained in:
2024-11-27 19:31:33 +01:00
commit 94c5331cd1
9 changed files with 20331 additions and 0 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "auto-rebase",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"build": "cp package.json dist/ && esbuild --outdir=dist --bundle --platform=node --allow-overwrite ./app.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.11.1"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@types/node": "^22.10.0",
"esbuild": "^0.24.0",
"typescript": "^5.7.2"
}
}