actions/package.json
2026-05-11 11:18:49 +02:00

20 lines
476 B
JSON

{
"name": "forgejo",
"module": "index.ts",
"type": "module",
"private": true,
"license": "MIT",
"devDependencies": {
"@types/bun": "^1.1",
"@types/node": "^22",
"typescript": "^5"
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.1",
"@octokit/webhooks-types": "^7.5.0"
},
"scripts": {
"build": "bun build index.ts --target bun --outdir dist --format esm --minify && mv dist/index.js dist/index.mjs"
}
}