mirror of
https://github.com/imjasonh/apidiff-action
synced 2026-07-06 22:52:43 +00:00
- Remove dist/ from .gitignore - Exclude dist/ from pre-commit hooks - Exclude *.md from prettier formatting - Update CLAUDE.md with build documentation - Temporarily disable check-dist hook This prepares for committing the compiled dist/index.js file. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
59 lines
1.2 KiB
JSON
59 lines
1.2 KiB
JSON
{
|
|
"author": "Jason Hall",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/github": "^6.0.0"
|
|
},
|
|
"description": "GitHub Action for detecting breaking API changes in Go code",
|
|
"devDependencies": {
|
|
"@types/jest": "^30.0.0",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"eslint": "^9.32.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"husky": "^9.1.7",
|
|
"jest": "^30.0.5",
|
|
"lint-staged": "^16.1.2",
|
|
"prettier": "^3.1.1"
|
|
},
|
|
"jest": {
|
|
"collectCoverage": true,
|
|
"coverageThreshold": {
|
|
"global": {
|
|
"branches": 80,
|
|
"functions": 80,
|
|
"lines": 80,
|
|
"statements": 80
|
|
}
|
|
},
|
|
"testEnvironment": "node"
|
|
},
|
|
"keywords": [
|
|
"github-action",
|
|
"go",
|
|
"golang",
|
|
"api",
|
|
"compatibility",
|
|
"breaking-changes"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
],
|
|
"*.{json,yml}": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"main": "index.js",
|
|
"name": "apidiff-action",
|
|
"scripts": {
|
|
"build": "ncc build index.js -o dist",
|
|
"format": "prettier --write .",
|
|
"lint": "eslint .",
|
|
"prepare": "husky install",
|
|
"test": "jest"
|
|
},
|
|
"version": "1.0.0"
|
|
}
|