balda 0.0.4 → 0.0.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "balda",
3
- "version": "0.0.04",
3
+ "version": "0.0.06",
4
4
  "type": "module",
5
5
  "main": "./lib/index.cjs",
6
6
  "module": "./lib/index.js",
@@ -19,9 +19,15 @@
19
19
  "test:cron": "tsx test/cron/index.ts",
20
20
  "test:cron:bun": "bun run --watch test/cron/index.ts",
21
21
  "test:cron:deno": "deno task test:cron",
22
- "benchmark": "tsx test/benchmark/index.ts",
23
- "benchmark:bun": "bun run --watch test/benchmark/index.ts",
24
- "benchmark:deno": "deno task benchmark",
22
+ "benchmark": "bash run-benchmarks.sh --quick",
23
+ "benchmark:all": "bash run-benchmarks.sh --all",
24
+ "benchmark:runtime": "bash run-benchmarks.sh --runtime",
25
+ "benchmark:plugins": "bash run-benchmarks.sh --plugins",
26
+ "benchmark:quick": "tsx test/benchmark/quick-bench.ts",
27
+ "benchmark:scenarios": "tsx test/benchmark/all-scenarios.ts",
28
+ "benchmark:old": "tsx test/benchmark/index.ts",
29
+ "benchmark:bun": "USE_BUN=1 bash run-benchmarks.sh --quick",
30
+ "benchmark:deno": "USE_DENO=1 bash run-benchmarks.sh --quick",
25
31
  "dev": "tsx watch test/server/index.ts",
26
32
  "dev:bun": "bun run --watch test/server/index.ts",
27
33
  "dev:deno": "deno task dev",
@@ -48,6 +54,7 @@
48
54
  "@aws-sdk/s3-request-presigner": "^3.956.0",
49
55
  "@azure/storage-blob": "^12.29.1",
50
56
  "@sinclair/typebox": "^0.34.41",
57
+ "@types/autocannon": "^7.12.7",
51
58
  "@types/bun": "^1.3.5",
52
59
  "@types/deno": "^2.5.0",
53
60
  "@types/express": "^5.0.6",
@@ -72,7 +79,7 @@
72
79
  "mqtt": "^5.14.1",
73
80
  "node-cron": "^4.2.1",
74
81
  "pg": "^8.16.3",
75
- "pg-boss": "^12.5.3",
82
+ "pg-boss": "^12.5.4",
76
83
  "prettier": "^3.7.4",
77
84
  "sqs-consumer": "^14.2.0",
78
85
  "swagger-typescript-api": "^13.2.16",
@@ -99,6 +106,7 @@
99
106
  "@aws-sdk/s3-presigned-post": "^3.956.0",
100
107
  "@aws-sdk/s3-request-presigner": "^3.956.0",
101
108
  "@azure/storage-blob": "^12.29.1",
109
+ "@sinclair/typebox": "^0.34.41",
102
110
  "bullmq": "^5.66.2",
103
111
  "esbuild": "^0.27.2",
104
112
  "esbuild-plugin-copy": "^2.1.1",
@@ -111,8 +119,7 @@
111
119
  "pg-boss": "^12.5.3",
112
120
  "sqs-consumer": "^14.2.0",
113
121
  "swagger-typescript-api": "^13.2.16",
114
- "zod": "^4.0.0",
115
- "@sinclair/typebox": "^0.34.41"
122
+ "zod": "^4.0.0"
116
123
  },
117
124
  "engines": {
118
125
  "node": ">=18.20.8",