flake reorg, enable panic hook

This commit is contained in:
Robin Appelman 2025-06-27 23:02:10 +02:00
commit 667569052c
18 changed files with 200 additions and 165 deletions

View file

@ -1,5 +1,8 @@
{ lib, buildNpmPackage, fetchFromGitHub }:
{
lib,
buildNpmPackage,
fetchFromGitHub,
}:
buildNpmPackage rec {
pname = "json-schema-to-typescript";
version = "13.1.2";
@ -23,6 +26,6 @@ buildNpmPackage rec {
description = "Compile JSONSchema to TypeScript type declarations";
homepage = "https://github.com/bcherny/json-schema-to-typescript";
license = licenses.mit;
maintainers = with maintainers; [ icewind1991 ];
maintainers = with maintainers; [icewind1991];
};
}
}