Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 19 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,36 +17,43 @@
"keywords": ["homebrew", "pkgx", "bun", "package"],
"scripts": {
"build": "for dir in packages/*; do if [ -f \"$dir/package.json\" ]; then echo \"Building $dir\" && bun run --cwd $dir build; fi; done",
"lint": "bunx --bun eslint .",
"lint:fix": "bunx --bun eslint . --fix",
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
"changelog": "bunx --bun changelogen --output CHANGELOG.md",
"release": "bun run changelog && bunx --bun bumpp -r --all",
"test": "bun test",
"lint": "bunx --bun eslint .",
"lint:fix": "bunx --bun eslint . --fix",
"changelog": "bunx logsmith --verbose",
"changelog:generate": "bunx logsmith --output CHANGELOG.md",
"release": "bun run changelog:generate && bunx bumpx prompt --recursive",
"postinstall": "bunx git-hooks",
"dev:docs": "bun vitepress dev docs",
"build:docs": "bun vitepress build docs",
"preview:docs": "bun vitepress preview docs",
"typecheck": "bun --bun tsc --noEmit"
},
"devDependencies": {
"@stacksjs/bumpx": "^0.1.17",
"@stacksjs/docs": "^0.70.23",
"@stacksjs/eslint-config": "^4.14.0-beta.3",
"@stacksjs/gitlint": "^0.1.5",
"@stacksjs/launchpad": "workspace:*",
"@stacksjs/logsmith": "^0.1.8",
"@types/bun": "^1.2.20",
"buddy-bot": "^0.8.8",
"bumpp": "^10.2.3",
"bun-plugin-dtsx": "0.9.5",
"changelogen": "^0.6.2",
"lint-staged": "^15.5.2",
"simple-git-hooks": "^2.13.1",
"buddy-bot": "^0.8.10",
"bun-git-hooks": "^0.2.19",
"bun-plugin-dtsx": "0.21.12",
"typescript": "^5.9.2"
},
"overrides": {
"@stacksjs/dtsx": "0.9.5",
"unconfig": "0.3.10"
},
"lint-staged": {
"*.{js,ts}": "bunx --bun eslint . --fix"
"git-hooks": {
"pre-commit": {
"staged-lint": {
"*.{js,ts,json,yaml,yml,md}": "bunx --bun eslint --fix"
}
},
"commit-msg": "bunx gitlint --edit .git/COMMIT_EDITMSG"
},
"workspaces": [
"packages/*"
Expand Down
2 changes: 1 addition & 1 deletion packages/launchpad/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"ts-pkgx": "^0.4.30"
},
"devDependencies": {
"bun-plugin-dtsx": "0.9.5"
"bun-plugin-dtsx": "0.21.12"
},
"lint-staged": {
"*.{js,ts}": "bunx --bun eslint . --fix"
Expand Down