54 lines
1.4 KiB
JSON
54 lines
1.4 KiB
JSON
{
|
|
"name": "create-or-update-comment",
|
|
"version": "5.0.0",
|
|
"description": "Create or update an issue or pull request comment",
|
|
"main": "lib/main.js",
|
|
"engines": {
|
|
"node": ">=24.4.0"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc && ncc build",
|
|
"format": "prettier --write '**/*.ts'",
|
|
"format-check": "prettier --check '**/*.ts'",
|
|
"lint": "eslint src/**/*.ts",
|
|
"test": "jest --passWithNoTests"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/peter-evans/create-or-update-comment.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"create",
|
|
"update",
|
|
"comment"
|
|
],
|
|
"author": "Peter Evans",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/peter-evans/create-or-update-comment/issues"
|
|
},
|
|
"homepage": "https://github.com/peter-evans/create-or-update-comment#readme",
|
|
"dependencies": {
|
|
"@actions/core": "^1.11.1",
|
|
"@actions/github": "^6.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^18.19.130",
|
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
"@typescript-eslint/parser": "^5.62.0",
|
|
"@vercel/ncc": "^0.38.4",
|
|
"eslint": "^8.57.1",
|
|
"eslint-plugin-github": "^4.10.2",
|
|
"eslint-plugin-jest": "^27.9.0",
|
|
"eslint-plugin-prettier": "^5.5.5",
|
|
"jest": "^30.2.0",
|
|
"jest-circus": "^30.2.0",
|
|
"js-yaml": "^4.1.1",
|
|
"prettier": "^3.8.1",
|
|
"ts-jest": "^29.4.6",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|