Files
setup-deno/deno.json
Christian Svensson d74ee56ed6 refactor: convert action to TS and bundle code (#95)
(cherry picked from commit 95bbb87724)
2025-05-14 18:58:06 +02:00

26 lines
561 B
JSON

{
"lock": {
"frozen": true
},
"nodeModulesDir": "auto",
"license": "MIT",
"compilerOptions": {
"lib": ["esnext"]
},
"exclude": [
"dist"
],
"tasks": {
"build": "deno run -A scripts/build.ts"
},
"imports": {
"@actions/core": "npm:@actions/core@^1.11.1",
"@actions/tool-cache": "npm:@actions/tool-cache@^2.0.2",
"@types/node": "npm:@types/node@^22.15.0",
"@types/semver": "npm:@types/semver@^7.7.0",
"semver": "npm:semver@^7.7.1",
"tsdown": "npm:tsdown@0.10.1",
"undici": "npm:undici@^7.8.0"
}
}