@hyphen/sdk 1.12.0 → 1.12.2

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": "@hyphen/sdk",
3
- "version": "1.12.0",
3
+ "version": "1.12.2",
4
4
  "description": "Hyphen SDK for Node.js",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -13,8 +13,9 @@
13
13
  },
14
14
  "types": "dist/index.d.ts",
15
15
  "scripts": {
16
- "test": "xo --fix && vitest run --coverage",
17
- "test:ci": "xo && vitest run --coverage",
16
+ "lint": "biome check --write --error-on-warnings",
17
+ "test": "pnpm lint && vitest run --coverage",
18
+ "test:ci": "biome check --error-on-warnings && vitest run --coverage",
18
19
  "build": "rimraf ./dist && tsup src/index.ts --format esm,cjs --dts --clean",
19
20
  "clean": "rimraf ./dist pnpm-lock.yaml node_modules coverage",
20
21
  "prepublishOnly": "rimraf ./dist && tsup src/index.ts --format esm,cjs --dts --clean"
@@ -29,28 +30,29 @@
29
30
  "author": "Team Hyphen <hello@hyphen.ai>",
30
31
  "license": "MIT",
31
32
  "devDependencies": {
32
- "@swc/core": "^1.13.2",
33
- "@types/node": "^24.1.0",
33
+ "@biomejs/biome": "^2.2.4",
34
+ "@swc/core": "^1.13.5",
35
+ "@types/node": "^24.3.1",
34
36
  "@vitest/coverage-v8": "^3.2.4",
35
37
  "rimraf": "^6.0.1",
36
- "tsd": "^0.32.0",
38
+ "tsd": "^0.33.0",
37
39
  "tsup": "^8.5.0",
38
- "typescript": "^5.8.3",
39
- "vitest": "^3.2.4",
40
- "xo": "^1.2.1"
40
+ "typescript": "^5.9.2",
41
+ "vitest": "^3.2.4"
41
42
  },
42
43
  "files": [
43
44
  "dist",
44
45
  "LICENSE"
45
46
  ],
46
47
  "dependencies": {
47
- "@faker-js/faker": "^9.9.0",
48
+ "@faker-js/faker": "^10.0.0",
48
49
  "@hyphen/openfeature-server-provider": "^1.0.7",
49
- "@openfeature/server-sdk": "^1.18.0",
50
- "axios": "^1.11.0",
51
- "cacheable": "^1.10.3",
52
- "dotenv": "^17.2.1",
53
- "hookified": "^1.10.0",
54
- "pino": "^9.7.0"
50
+ "@openfeature/core": "^1.9.0",
51
+ "@openfeature/server-sdk": "^1.19.0",
52
+ "axios": "^1.12.1",
53
+ "cacheable": "^2.0.0",
54
+ "dotenv": "^17.2.2",
55
+ "hookified": "^1.12.0",
56
+ "pino": "^9.9.5"
55
57
  }
56
58
  }