Skip to content
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@grunnverk/github-tools",
"version": "1.5.1",
"version": "1.5.3",
"description": "GitHub API utilities for automation - PR management, issue tracking, workflow monitoring",
"main": "dist/index.js",
"type": "module",
Expand All @@ -22,7 +22,7 @@
"build": "npm run lint && tsc --noEmit && vite build",
"dev": "vite",
"watch": "vite build --watch",
"test": "vitest run --coverage",
"test": "rm -rf coverage && vitest run --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"clean": "rm -rf dist",
Expand All @@ -45,7 +45,7 @@
"node": ">=24.0.0"
},
"dependencies": {
"@grunnverk/git-tools": "^1.5.1",
"@grunnverk/git-tools": "^1.5.3",
"@octokit/rest": "^22.0.0"
},
"peerDependencies": {
Expand Down
2 changes: 2 additions & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ export default defineConfig({
include: ['src/**/*'],
exclude: ['tests/**/*', 'node_modules/**/*'],
rollupTypes: true,
outDir: 'dist',
entryRoot: 'src',
}),
],
build: {
Expand Down