Imported AI generated TypeScript action skeleton.

This commit is contained in:
2026-01-10 22:04:18 +01:00
commit e7d0039424
7 changed files with 291 additions and 0 deletions

34
package.json Normal file
View File

@@ -0,0 +1,34 @@
{
"name": "setup-github-release",
"version": "1.0.0",
"description": "A GitHub Action to download a tool",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts -o dist --source-map --license res.txt",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build src/index.ts -o dist --source-map --license res.txt",
"test": "jest",
"all": "npm run format && npm run lint && npm run test && npm run package"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=24"
},
"dependencies": {
"@actions/core": "^1.11.0",
"@actions/tool-cache": "^2.0.2"
},
"devDependencies": {
"@types/node": "^25.0.0",
"@vercel/ncc": "^0.38.4",
"typescript": "^5.9.0"
}
}