chore: enhance package.json with new scripts for testing, cleaning, and pre-build processes; add RELEASES.md for release workflows documentation

This commit is contained in:
Luke Hagar
2025-08-14 22:19:11 -05:00
parent 971895d338
commit 9f771ed4b0
4 changed files with 498 additions and 5 deletions

View File

@@ -11,7 +11,11 @@
"main": "src/index.ts",
"scripts": {
"dev": "bun --watch --env-file=.dev.env --env-file=.env run src/action.ts",
"build": "tsc -p tsconfig.build.json"
"build": "tsc -p tsconfig.build.json",
"test": "bun test",
"test:action": "bun --env-file=.dev.env run dist/action.js",
"clean": "rm -rf dist/",
"prebuild": "npm run clean"
},
"devDependencies": {
"@types/bun": "latest",
@@ -46,12 +50,11 @@
"npm",
"github",
"pypi",
"homebrew",
"powershell",
"postman",
"go",
"tracking",
"usage"
"usage",
"charts",
"reports"
],
"author": "LukeHagar",
"license": "MIT",