also looking at this
chore(deps): update all non-major dependencies
#33
7 files
+96
-77
Review threads live on the whole diff, not on one commit, so none are shown here - a thread's line means something in the branch's final form, and painting it into an intermediate step would put it on code it is not about.
| @@ -0,0 +1,89 @@ | ||
| 1 | { | |
| 2 | "name": "bun-query-builder", | |
| 3 | "type": "module", | |
| 4 | "version": "0.1.5", | |
| 5 | "description": "A simple yet performant query builder for TypeScript. Built with Bun.", | |
| 6 | "author": "Chris Breuer <chris@stacksjs.org>", | |
| 7 | "license": "MIT", | |
| 8 | "homepage": "https://github.com/stacksjs/bun-query-builder#readme", | |
| 9 | "repository": { | |
| 10 | "type": "git", | |
| 11 | "url": "git+https://github.com/stacksjs/bun-query-builder.git" | |
| 12 | }, | |
| 13 | "bugs": { | |
| 14 | "url": "https://github.com/stacksjs/bun-query-builder/issues" | |
| 15 | }, | |
| 16 | "keywords": [ | |
| 17 | "typescript", | |
| 18 | "query-builder", | |
| 19 | "bun", | |
| 20 | "package" | |
| 21 | ], | |
| 22 | "exports": { | |
| 23 | ".": { | |
| 24 | "types": "./dist/index.d.ts", | |
| 25 | "import": "./dist/index.js" | |
| 26 | }, | |
| 27 | "./*": { | |
| 28 | "import": "./dist/*" | |
| 29 | } | |
| 30 | }, | |
| 31 | "module": "./dist/index.js", | |
| 32 | "types": "./dist/index.d.ts", | |
| 33 | "bin": { | |
| 34 | "query-builder": "./dist/bin/cli.js", | |
| 35 | "qbx": "./dist/bin/cli.js", | |
| 36 | "qb": "./dist/bin/cli.js" | |
| 37 | }, | |
| 38 | "files": [ | |
| 39 | "README.md", | |
| 40 | "dist" | |
| 41 | ], | |
| 42 | "scripts": { | |
| 43 | "build": "bun --bun build.ts && bun run compile", | |
| 44 | "compile": "bun build ./bin/cli.ts --compile --minify --outfile bin/qbx", | |
| 45 | "compile:all": "bun run compile:linux-x64 && bun run compile:linux-arm64 && bun run compile:windows-x64 && bun run compile:darwin-x64 && bun run compile:darwin-arm64", | |
| 46 | "compile:linux-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-linux-x64 --outfile bin/qbx-linux-x64", | |
| 47 | "compile:linux-arm64": "bun build ./bin/cli.ts --compile --minify --target=bun-linux-arm64 --outfile bin/qbx-linux-arm64", | |
| 48 | "compile:windows-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-windows-x64 --outfile bin/qbx-windows-x64.exe", | |
| 49 | "compile:darwin-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-darwin-x64 --outfile bin/qbx-darwin-x64", | |
| 50 | "compile:darwin-arm64": "bun build ./bin/cli.ts --compile --minify --target=bun-darwin-arm64 --outfile bin/qbx-darwin-arm64", | |
| 51 | "zip": "bun run zip:all", | |
| 52 | "zip:all": "bun run zip:linux-x64 && bun run zip:linux-arm64 && bun run zip:windows-x64 && bun run zip:darwin-x64 && bun run zip:darwin-arm64", | |
| 53 | "zip:linux-x64": "zip -j bin/qbx-linux-x64.zip bin/qbx-linux-x64", | |
| 54 | "zip:linux-arm64": "zip -j bin/qbx-linux-arm64.zip bin/qbx-linux-arm64", | |
| 55 | "zip:windows-x64": "zip -j bin/qbx-windows-x64.zip bin/qbx-windows-x64.exe", | |
| 56 | "zip:darwin-x64": "zip -j bin/qbx-darwin-x64.zip bin/qbx-darwin-x64", | |
| 57 | "zip:darwin-arm64": "zip -j bin/qbx-darwin-arm64.zip bin/qbx-darwin-arm64", | |
| 58 | "fresh": "bunx rimraf node_modules/ bun.lock && bun i", | |
| 59 | "prepublishOnly": "bun --bun run build && bun run compile:all && bun run zip", | |
| 60 | "test": "bun test", | |
| 61 | "lint": "bunx --bun eslint .", | |
| 62 | "lint:fix": "bunx --bun eslint . --fix", | |
| 63 | "changelog": "bunx logsmith --verbose", | |
| 64 | "changelog:generate": "bunx logsmith --output CHANGELOG.md", | |
| 65 | "release": "bun run changelog:generate && bunx bumpx prompt --recursive", | |
| 66 | "dev:docs": "bun --bun vitepress dev docs", | |
| 67 | "build:docs": "bun --bun vitepress build docs", | |
| 68 | "preview:docs": "bun --bun vitepress preview docs", | |
| 69 | "typecheck": "bun --bun tsc" | |
| 70 | }, | |
| 71 | "dependencies": { | |
| 72 | "@stacksjs/ts-validation": "^0.4.7", | |
| 73 | "ts-mocker": "^0.1.4" | |
| 74 | }, | |
| 75 | "devDependencies": { | |
| 76 | "bunfig": "^0.15.0" | |
| 77 | }, | |
| 78 | "overrides": { | |
| 79 | "unconfig": "0.3.10" | |
| 80 | }, | |
| 81 | "git-hooks": { | |
| 82 | "pre-commit": { | |
| 83 | "staged-lint": { | |
| 84 | "*.{js,ts,json,yaml,yml,md}": "bunx --bun eslint --fix" | |
| 85 | } | |
| 86 | }, | |
| 87 | "commit-msg": "bunx gitlint --edit .git/COMMIT_EDITMSG" | |
| 88 | } | |
| 89 | } | |