@fishjam-cloud/js-server-sdk 0.25.5 → 0.27.0-rc.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.
@@ -31,7 +31,7 @@ var import_genai = require("@google/genai");
31
31
  // package.json
32
32
  var package_default = {
33
33
  name: "@fishjam-cloud/js-server-sdk",
34
- version: "0.25.5",
34
+ version: "0.27.0-rc.0",
35
35
  description: "Fishjam server SDK for JavaScript",
36
36
  homepage: "https://github.com/fishjam-cloud/js-server-sdk",
37
37
  author: "Fishjam Team",
@@ -72,7 +72,8 @@ var package_default = {
72
72
  "format:check": "prettier --check .",
73
73
  typecheck: "tsc --noEmit",
74
74
  lint: "eslint . --fix",
75
- "lint:check": "eslint . "
75
+ "lint:check": "eslint .",
76
+ test: "vitest run"
76
77
  },
77
78
  tsup: {
78
79
  entry: [
@@ -112,7 +113,8 @@ var package_default = {
112
113
  eslint: "^9.33.0",
113
114
  prettier: "^3.6.2",
114
115
  tsup: "^8.4.0",
115
- "typed-emitter": "^2.1.0"
116
+ "typed-emitter": "^2.1.0",
117
+ vitest: "^3.0.0"
116
118
  },
117
119
  "lint-staged": {
118
120
  "*.{js,ts,tsx,mjs,cjs}": [
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  package_default
3
- } from "../chunk-NUDP3SRJ.mjs";
3
+ } from "../chunk-Q5OZUPAC.mjs";
4
4
 
5
5
  // src/integrations/gemini.ts
6
6
  import { GoogleGenAI } from "@google/genai";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fishjam-cloud/js-server-sdk",
3
- "version": "0.25.5",
3
+ "version": "0.27.0-rc.0",
4
4
  "description": "Fishjam server SDK for JavaScript",
5
5
  "homepage": "https://github.com/fishjam-cloud/js-server-sdk",
6
6
  "author": "Fishjam Team",
@@ -41,7 +41,8 @@
41
41
  "format:check": "prettier --check .",
42
42
  "typecheck": "tsc --noEmit",
43
43
  "lint": "eslint . --fix",
44
- "lint:check": "eslint . "
44
+ "lint:check": "eslint .",
45
+ "test": "vitest run"
45
46
  },
46
47
  "tsup": {
47
48
  "entry": [
@@ -73,19 +74,20 @@
73
74
  }
74
75
  },
75
76
  "devDependencies": {
76
- "@fishjam-cloud/fishjam-openapi": "workspace:*",
77
- "@fishjam-cloud/fishjam-proto": "workspace:*",
77
+ "@fishjam-cloud/fishjam-openapi": "0.27.0-rc.0",
78
+ "@fishjam-cloud/fishjam-proto": "0.27.0-rc.0",
78
79
  "@openapitools/openapi-generator-cli": "^2.18.4",
79
80
  "@types/node": "^22.13.16",
80
81
  "@types/websocket": "^1.0.10",
81
82
  "eslint": "^9.33.0",
82
83
  "prettier": "^3.6.2",
83
84
  "tsup": "^8.4.0",
84
- "typed-emitter": "^2.1.0"
85
+ "typed-emitter": "^2.1.0",
86
+ "vitest": "^3.0.0"
85
87
  },
86
88
  "lint-staged": {
87
89
  "*.{js,ts,tsx,mjs,cjs}": [
88
90
  "eslint --fix --config eslint.config.mjs"
89
91
  ]
90
92
  }
91
- }
93
+ }