@synnaxlabs/freighter 0.50.0 → 0.53.0

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/eslint.config.ts CHANGED
@@ -7,6 +7,6 @@
7
7
  // License, use of this software will be governed by the Apache License, Version 2.0,
8
8
  // included in the file licenses/APL.txt.
9
9
 
10
- import synnaxConfig from "eslint-config-synnaxlabs";
10
+ import cfg from "@synnaxlabs/eslint-config";
11
11
 
12
- export default synnaxConfig;
12
+ export default cfg;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synnaxlabs/freighter",
3
- "version": "0.50.0",
3
+ "version": "0.53.0",
4
4
  "type": "module",
5
5
  "description": "a modular transport abstraction",
6
6
  "repository": "https://github.com/synnaxlabs/synnax/tree/main/freighter/ts",
@@ -14,21 +14,21 @@
14
14
  "control systems"
15
15
  ],
16
16
  "dependencies": {
17
- "zod": "^4.1.13",
18
- "@synnaxlabs/alamos": "^0.50.0",
19
- "@synnaxlabs/x": "^0.50.0"
17
+ "zod": "^4.3.6",
18
+ "@synnaxlabs/alamos": "^0.53.0",
19
+ "@synnaxlabs/x": "^0.53.0"
20
20
  },
21
21
  "devDependencies": {
22
- "@types/node": "^25.0.2",
22
+ "@types/node": "^25.1.0",
23
23
  "@vitest/coverage-v8": "^3.2.4",
24
24
  "eslint": "^9.39.2",
25
25
  "madge": "^8.0.0",
26
26
  "typescript": "^5.9.3",
27
- "vite": "^7.2.7",
27
+ "vite": "^7.3.1",
28
28
  "vitest": "^3.2.4",
29
- "@synnaxlabs/tsconfig": "^0.50.0",
30
- "eslint-config-synnaxlabs": "^0.50.0",
31
- "@synnaxlabs/vite-plugin": "^0.50.0"
29
+ "@synnaxlabs/tsconfig": "^0.0.0",
30
+ "@synnaxlabs/vite-plugin": "^0.0.0",
31
+ "@synnaxlabs/eslint-config": "^0.0.0"
32
32
  },
33
33
  "main": "dist/freighter.cjs",
34
34
  "module": "dist/freighter.js",
@@ -38,6 +38,7 @@
38
38
  "check-types": "tsc --noEmit",
39
39
  "watch": "tsc --noEmit && vite build --watch",
40
40
  "test": "vitest",
41
+ "cov": "vitest --coverage",
41
42
  "lint": "eslint",
42
43
  "fix": "eslint --fix",
43
44
  "madge": "madge --circular src"