2025-07-29 16:33:49 -04:00
|
|
|
{
|
|
|
|
|
"author": "Jason Hall",
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@actions/core": "^1.10.1",
|
|
|
|
|
"@actions/exec": "^1.1.1",
|
|
|
|
|
"@actions/github": "^6.0.0"
|
|
|
|
|
},
|
2025-07-29 17:07:15 -04:00
|
|
|
"description": "GitHub Action for detecting breaking API changes in Go code",
|
2025-07-29 16:33:49 -04:00
|
|
|
"devDependencies": {
|
2025-09-22 03:28:05 +00:00
|
|
|
"@vercel/ncc": "^0.38.4",
|
2026-06-01 06:11:42 +00:00
|
|
|
"eslint": "^10.4.1",
|
2025-07-29 22:03:33 +00:00
|
|
|
"eslint-config-prettier": "^10.1.8",
|
|
|
|
|
"husky": "^9.1.7",
|
2026-06-01 06:11:42 +00:00
|
|
|
"lint-staged": "^17.0.7",
|
2026-04-20 03:28:59 +00:00
|
|
|
"prettier": "^3.8.3"
|
2025-07-29 16:33:49 -04:00
|
|
|
},
|
2025-07-30 09:13:03 -04:00
|
|
|
"engines": {
|
|
|
|
|
"node": ">=20.0.0 <21.0.0"
|
|
|
|
|
},
|
2025-07-29 17:07:15 -04:00
|
|
|
"keywords": [
|
|
|
|
|
"github-action",
|
|
|
|
|
"go",
|
|
|
|
|
"golang",
|
|
|
|
|
"api",
|
|
|
|
|
"compatibility",
|
|
|
|
|
"breaking-changes"
|
|
|
|
|
],
|
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
|
"lint-staged": {
|
|
|
|
|
"*.js": [
|
|
|
|
|
"eslint --fix",
|
|
|
|
|
"prettier --write"
|
|
|
|
|
],
|
2025-07-30 08:55:35 -04:00
|
|
|
"*.{json,yml}": [
|
2025-07-29 17:07:15 -04:00
|
|
|
"prettier --write"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"main": "index.js",
|
|
|
|
|
"name": "apidiff-action",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "ncc build index.js -o dist",
|
|
|
|
|
"format": "prettier --write .",
|
|
|
|
|
"lint": "eslint .",
|
|
|
|
|
"prepare": "husky install",
|
2025-08-08 18:20:53 -04:00
|
|
|
"test": "node --test"
|
2025-07-29 17:07:15 -04:00
|
|
|
},
|
|
|
|
|
"version": "1.0.0"
|
|
|
|
|
}
|