Initial control-plane protocol package

This commit is contained in:
Timothy J. Aveni
2026-06-17 22:47:56 -07:00
commit d8f0421d23
5 changed files with 2026 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
description = "Shared Quixos control-plane protocol types";
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 {
packages = [
pkgs.nodejs_24
];
};
});
}
+13
View File
@@ -0,0 +1,13 @@
{
"name": "@quixos/control-plane-protocol",
"version": "1.0.0",
"private": true,
"type": "module",
"main": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"typecheck": "node --check src/index.ts"
}
}
+1974
View File
File diff suppressed because it is too large Load Diff
+19
View File
@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2022"],
"strict": true,
"noEmit": true,
"allowImportingTsExtensions": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"verbatimModuleSyntax": true,
"types": ["node"]
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", ".yarn", "dist"]
}
View File