initial commit
All checks were successful
Publish to npm / publish-npm (release) Successful in 9s

This commit is contained in:
rus07tam 2026-02-08 12:25:57 +00:00
commit 14bec5c5cd
No known key found for this signature in database
22 changed files with 969 additions and 0 deletions

31
flake.nix Normal file
View file

@ -0,0 +1,31 @@
{
description = "Bun package dev shell";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
nixpkgs,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs {
inherit system;
};
in
{
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
bun
nixfmt
];
};
}
);
}