golangci-lint-action/package.json
dependabot[bot] ca80beefdd
Some checks failed
build-and-test / test-go-mod (macos-latest, fixtures/go-tool) (push) Has been cancelled
build-and-test / test-go-mod (ubuntu-22.04-arm, fixtures/go-mod) (push) Has been cancelled
build-and-test / test-go-mod (ubuntu-22.04-arm, fixtures/go-tool) (push) Has been cancelled
build-and-test / test-go-mod (ubuntu-latest, fixtures/go-mod) (push) Has been cancelled
build-and-test / test-go-mod (ubuntu-latest, fixtures/go-tool) (push) Has been cancelled
build-and-test / test-go-mod (windows-latest, fixtures/go-mod) (push) Has been cancelled
build-and-test / test-go-mod (windows-latest, fixtures/go-tool) (push) Has been cancelled
build-and-test / test-plugins (macos-latest, ) (push) Has been cancelled
build-and-test / test-plugins (macos-latest, latest) (push) Has been cancelled
build-and-test / test-plugins (macos-latest, v2.7) (push) Has been cancelled
build-and-test / test-plugins (macos-latest, v2.7.2) (push) Has been cancelled
build-and-test / test-plugins (ubuntu-22.04-arm, ) (push) Has been cancelled
build-and-test / test-plugins (ubuntu-22.04-arm, latest) (push) Has been cancelled
build-and-test / test-plugins (ubuntu-22.04-arm, v2.7) (push) Has been cancelled
build-and-test / test-plugins (ubuntu-22.04-arm, v2.7.2) (push) Has been cancelled
build-and-test / test-plugins (ubuntu-latest, ) (push) Has been cancelled
build-and-test / test-plugins (ubuntu-latest, latest) (push) Has been cancelled
build-and-test / test-plugins (ubuntu-latest, v2.7) (push) Has been cancelled
build-and-test / test-plugins (ubuntu-latest, v2.7.2) (push) Has been cancelled
build-and-test / test-plugins (windows-latest, ) (push) Has been cancelled
build-and-test / test-plugins (windows-latest, latest) (push) Has been cancelled
build-and-test / test-plugins (windows-latest, v2.7) (push) Has been cancelled
build-and-test / test-plugins (windows-latest, v2.7.2) (push) Has been cancelled
build-and-test / test-monorepo (macos-latest) (push) Has been cancelled
build-and-test / test-monorepo (ubuntu-22.04-arm) (push) Has been cancelled
build-and-test / test-monorepo (ubuntu-latest) (push) Has been cancelled
build-and-test / test-monorepo (windows-latest) (push) Has been cancelled
Code Scanning - Action / codeQL (push) Has been cancelled
build-and-test / build (push) Has been cancelled
build-and-test / test (macos-latest, ) (push) Has been cancelled
build-and-test / test (macos-latest, latest) (push) Has been cancelled
build-and-test / test (macos-latest, v2.7) (push) Has been cancelled
build-and-test / test (macos-latest, v2.7.2) (push) Has been cancelled
build-and-test / test (ubuntu-22.04-arm, ) (push) Has been cancelled
build-and-test / test (ubuntu-22.04-arm, latest) (push) Has been cancelled
build-and-test / test (ubuntu-22.04-arm, v2.7) (push) Has been cancelled
build-and-test / test (ubuntu-22.04-arm, v2.7.2) (push) Has been cancelled
build-and-test / test (ubuntu-latest, ) (push) Has been cancelled
build-and-test / test (ubuntu-latest, latest) (push) Has been cancelled
build-and-test / test (ubuntu-latest, v2.7) (push) Has been cancelled
build-and-test / test (ubuntu-latest, v2.7.2) (push) Has been cancelled
build-and-test / test (windows-latest, ) (push) Has been cancelled
build-and-test / test (windows-latest, latest) (push) Has been cancelled
build-and-test / test (windows-latest, v2.7) (push) Has been cancelled
build-and-test / test (windows-latest, v2.7.2) (push) Has been cancelled
build-and-test / test-go-install (macos-latest, ) (push) Has been cancelled
build-and-test / test-go-install (macos-latest, 655e8ede5178280b2a640e185bc4a343aed0f54e) (push) Has been cancelled
build-and-test / test-go-install (macos-latest, latest) (push) Has been cancelled
build-and-test / test-go-install (macos-latest, v2.7.2) (push) Has been cancelled
build-and-test / test-go-install (ubuntu-22.04-arm, ) (push) Has been cancelled
build-and-test / test-go-install (ubuntu-22.04-arm, 655e8ede5178280b2a640e185bc4a343aed0f54e) (push) Has been cancelled
build-and-test / test-go-install (ubuntu-22.04-arm, latest) (push) Has been cancelled
build-and-test / test-go-install (ubuntu-22.04-arm, v2.7.2) (push) Has been cancelled
build-and-test / test-go-install (ubuntu-latest, ) (push) Has been cancelled
build-and-test / test-go-install (ubuntu-latest, 655e8ede5178280b2a640e185bc4a343aed0f54e) (push) Has been cancelled
build-and-test / test-go-install (ubuntu-latest, latest) (push) Has been cancelled
build-and-test / test-go-install (ubuntu-latest, v2.7.2) (push) Has been cancelled
build-and-test / test-go-install (windows-latest, ) (push) Has been cancelled
build-and-test / test-go-install (windows-latest, 655e8ede5178280b2a640e185bc4a343aed0f54e) (push) Has been cancelled
build-and-test / test-go-install (windows-latest, latest) (push) Has been cancelled
build-and-test / test-go-install (windows-latest, v2.7.2) (push) Has been cancelled
build-and-test / test-go-mod (macos-latest, fixtures/go-mod) (push) Has been cancelled
build(deps-dev): bump the dev-dependencies group with 3 updates (#1325)
2025-12-08 13:32:43 +01:00

57 lines
1.9 KiB
JSON

{
"name": "golanci-lint-action",
"version": "8.0.0",
"private": true,
"description": "golangci-lint github action",
"main": "dist/main.js",
"scripts": {
"build": "tsc && ncc build -o dist/run/ src/main.ts && ncc build -o dist/post_run/ src/post_main.ts",
"watched_build_main": "tsc && ncc build -w -o dist/run/ src/main.ts",
"watched_build_post_main": "tsc && ncc build -w -o dist/post_run/ src/post_main.ts",
"type-check": "tsc",
"lint": "eslint --max-warnings 1 **/*.ts --cache",
"lint-fix": "eslint **/*.ts --cache --fix",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"all": "npm run build && npm run format-check && npm run lint",
"local": "npm run build && act -j test -b",
"local-full-version": "npm run build && act -j test-full-version -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/golangci/golangci-lint-action.git"
},
"author": "golangci",
"license": "MIT",
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"@actions/cache": "^4.1.0",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.1",
"@actions/http-client": "^3.0.0",
"@octokit/plugin-retry": "^6.1.0",
"@actions/tool-cache": "^2.0.2",
"@types/node": "^24.10.1",
"@types/semver": "^7.7.1",
"@types/tmp": "^0.2.6",
"@types/which": "^3.0.4",
"tmp": "^0.2.5",
"which": "^6.0.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.32.1",
"@vercel/ncc": "^0.38.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.7.4",
"typescript": "^5.9.3"
}
}