comment-pull-request/package.json
2024-06-20 16:57:36 +02:00

36 lines
936 B
JSON

{
"name": "action-comment-pull-request",
"version": "1.0.0",
"description": "GitHub/Forgejo action for commenting pull-request",
"type": "module",
"main": "dist/lib/index.js",
"types": "dist/lib/main.d.ts",
"files": [
"/dist/lib"
],
"scripts": {
"build": "tsc -d && ncc build src/main.ts -o act",
"lint": "prettier --write **/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://code.thetadev.de/ThetaDev/action-comment-pull-request/"
},
"author": "ThetaDev",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"gitea-js": "^1.22.0"
},
"devDependencies": {
"@octokit/types": "^13.5.0",
"@stylistic/eslint-plugin": "^2.1.0",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.14.5",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0"
}
}