github action initialisation

This commit is contained in:
dutchie031
2026-04-07 14:11:44 +02:00
parent bd52a23a5f
commit d75f424b6a
9 changed files with 563 additions and 114 deletions
+18
View File
@@ -0,0 +1,18 @@
{
"name": "gh-scripting-compiler",
"version": "0.0.1",
"main": "dist/index.js",
"scripts": {
"build": "node esbuild.js",
"watch": "node esbuild.js --watch",
"package": "node esbuild.js --production"
},
"dependencies": {
"@actions/core": "^1.10.0"
},
"devDependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.0.0",
"esbuild": "^0.27.2"
}
}