[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.

chore: add typescript for type-check script (#12)

The `type-check` script expectes `tsc` to exist, but we don't actually
install typescript yet as a direct dependency.

This adds typescript as a dev dependency so the type-check script works
again.

CI somehow does discover `tsc` before this change, but local installs do
not.

authored by

James Garbutt and committed by
GitHub
(Feb 25, 2025, 7:55 AM -0600) 7ececba5 978fb7b9

+4
+1
package.json
··· 30 30 "prettier": "^3.4.2", 31 31 "tsup": "^8.3.6", 32 32 "tsx": "^4.19.1", 33 + "typescript": "^5.7.3", 33 34 "vitest": "^2.1.3" 34 35 }, 35 36 "dependencies": {
+3
pnpm-lock.yaml
··· 42 42 tsx: 43 43 specifier: ^4.19.1 44 44 version: 4.19.1 45 + typescript: 46 + specifier: ^5.7.3 47 + version: 5.7.3 45 48 vitest: 46 49 specifier: ^2.1.3 47 50 version: 2.1.3(@types/node@22.7.5)