mirror of
https://github.com/marocchino/sticky-pull-request-comment.git
synced 2026-04-05 14:09:25 +00:00
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"name": "sticky-pull-request-comment",
|
|
"version": "3.0.0",
|
|
"private": true,
|
|
"description": "Create comment on pull request, if exists update that comment.",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"format": "biome format --write .",
|
|
"format-check": "biome format --write .",
|
|
"lint": "biome check .",
|
|
"lint:fix": "biome check --apply .",
|
|
"package": "esbuild src/main.ts --bundle --platform=node --format=cjs --sourcemap --outfile=dist/index.js",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"coverage": "vitest run --coverage",
|
|
"build_test": "tsc && vitest run",
|
|
"all": "yarn build && yarn format && yarn lint && yarn package && yarn test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/typescript-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"author": "marocchino",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^3.0.0",
|
|
"@actions/github": "^9.0.0",
|
|
"@actions/glob": "^0.6.1",
|
|
"@octokit/graphql-schema": "^15.26.1"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.4.6",
|
|
"@types/node": "^25.5.0",
|
|
"esbuild": "0.27.4",
|
|
"js-yaml": "^4.1.0",
|
|
"typescript": "^5.9.2",
|
|
"vitest": "^4.0.16"
|
|
}
|
|
}
|