tsci add
tsci add is the same as npm add or bun add, but defaults to the tscircuit
registry. If your project has the tsci .npmrc, you can just do bun add @tsci/<author>.<package>
and it has the same effect.
Usage
tsci add <packageSpecs...>
Examples
$ tsci add @tsci/seveibar.PICO @tsci/seveibar.Key
# Adding @tsci/seveibar.PICO @tsci/seveibar.Key...
# ✓ Added @tsci/seveibar.PICO @tsci/seveibar.Key successfully
You can then import the module and use it for your board!
import { PICO_W } from "@tsci/seveibar.PICO_W"
export default () => (
<PICO_W name="U1" />
)