fixup! - [x] Remove npm ci and version steps from release.yml - [x] Add .goreleaser-dist to .gitignore - [x] Configure dist dir and before hook in goreleaser.yaml

This commit is contained in:
2026-03-11 22:43:04 +00:00
parent 0249d13265
commit ce4ad31750
8 changed files with 1061 additions and 3915 deletions
+10
View File
@@ -10,6 +10,8 @@
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"dependencies": {
@@ -17,9 +19,17 @@
},
"devDependencies": {
"@types/node": "^25.4.0",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.25.0",
"eslint-formatter-compact": "^9.0.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.26.1",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}