marocchino-sticky-pull-requ.../package.json
copilot-swe-agent[bot] 1258e4324b
Replace @vercel/ncc with esbuild to support @actions/core@3.0.0 (ESM-only)
Co-authored-by: marocchino <128431+marocchino@users.noreply.github.com>
2026-03-13 17:54:35 +09:00

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"
}
}