@anterior/brrr 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.envrc ADDED
@@ -0,0 +1 @@
1
+ use flake .#typescript
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env bash
2
+
3
+ set -euo pipefail
4
+
5
+ cd "$(dirname "${BASH_SOURCE[0]}")"
6
+
7
+ exec node --test 'src/**/*.test-integration.ts'
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "@anterior/brrr",
3
+ "version": "0.1.1",
4
+ "description": "Horizontally scalable workflow scheduling with pluggable backends",
5
+ "type": "module",
6
+ "bin": {
7
+ "brrr-test-integration": "brrr-test-integration"
8
+ },
9
+ "license": "AGPL-3.0-only",
10
+ "scripts": {
11
+ "build": "tsc",
12
+ "test": "node --test 'src/**/*.test.ts'",
13
+ "test:watch": "node --test --watch 'src/**/*.test.ts'",
14
+ "test:integration": "node --test 'src/**/*.test-integration.ts'"
15
+ },
16
+ "repository": "https://github.com/cohelm/brrr",
17
+ "engines": {
18
+ "node": ">=24"
19
+ },
20
+ "dependencies": {
21
+ "@aws-sdk/client-dynamodb": "^3.878.0",
22
+ "@aws-sdk/lib-dynamodb": "^3.878.0",
23
+ "@aws-sdk/util-dynamodb": "^3.878.0",
24
+ "bencode": "^4.0.0",
25
+ "redis": "^5.8.2",
26
+ "superjson": "^2.2.2"
27
+ },
28
+ "devDependencies": {
29
+ "@types/bencode": "^2.0.4",
30
+ "@types/node": "^24.2.1",
31
+ "typescript": "^5.9.2"
32
+ }
33
+ }
package/package.nix ADDED
@@ -0,0 +1,6 @@
1
+ { package-lock2nix, nodejs }:
2
+
3
+ package-lock2nix.mkNpmModule {
4
+ buildInputs = [ nodejs ];
5
+ src = ./.;
6
+ }