[READ-ONLY] Mirror of https://github.com/bombshell-dev/tab. shell autocompletions for javascript CLIs
4

Configure Feed

Select the types of activity you want to include in your feed.

perf: reduce bundle size (#67)

* reduce bundle size

* update

authored by

AmirHossein Sakhravi and committed by
GitHub
(Oct 5, 2025, 4:58 PM +0330) a823d0e9 43ebc18d

+18
+16
package.json
··· 56 56 "dependencies": { 57 57 "mri": "^1.2.0" 58 58 }, 59 + "peerDependencies": { 60 + "cac": "^6.7.14", 61 + "citty": "^0.1.6", 62 + "commander": "^13.1.0" 63 + }, 64 + "peerDependenciesMeta": { 65 + "cac": { 66 + "optional": true 67 + }, 68 + "citty": { 69 + "optional": true 70 + }, 71 + "commander": { 72 + "optional": true 73 + } 74 + }, 59 75 "exports": { 60 76 ".": { 61 77 "types": "./dist/t.d.ts",
+2
tsdown.config.ts
··· 11 11 format: ['esm'], 12 12 dts: true, 13 13 clean: true, 14 + minify: true, 15 + treeshake: true, 14 16 });