@xylabs/sdk-js 4.11.18 → 4.11.20

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.
Files changed (2) hide show
  1. package/knip.config.ts +9 -13
  2. package/package.json +27 -27
package/knip.config.ts CHANGED
@@ -2,35 +2,31 @@ import type { KnipConfig } from 'knip'
2
2
 
3
3
  const config: KnipConfig = {
4
4
  ignoreDependencies: ['@xylabs/ts-scripts-yarn3'],
5
- entry: ['src/index.ts', 'xy.config.ts'],
6
5
  workspaces: {
7
6
  '.': {
8
- entry: ['src/index.ts', 'eslint.config.mjs', 'xy.config.ts'],
7
+ entry: ['src/index.ts'],
9
8
  ignoreDependencies: [
10
- 'eslint',
11
- '@typescript-eslint/eslint-plugin',
12
9
  'eslint-import-resolver-typescript',
13
10
  ],
14
11
  },
15
12
  'packages/buffer': {
16
13
  ignoreDependencies: ['buffer'],
17
- entry: ['src/index.ts', 'src/node/index.ts', 'src/browser/index.ts'],
14
+ entry: ['src/node/index.ts', 'src/browser/index.ts'],
18
15
  },
19
- 'packages/*': { entry: ['src/index.ts', 'src/node/index.ts', 'src/browser/index.ts', 'src/neutral/index.ts'] },
16
+ 'packages/*': { entry: ['src/index.ts'] },
17
+ 'packages/platform': { entry: ['src/node/index.ts', 'src/browser/index.ts'] },
18
+ 'packages/crypto': { entry: ['src/node/index.ts', 'src/browser/index.ts'] },
19
+ 'packages/forget': { entry: ['src/index.ts', 'src/index-node.ts'] },
20
+ 'packages/url': { entry: ['src/node/index.ts', 'src/browser/index.ts', 'src/neutral/index.ts'] },
20
21
  'packages/threads': {
21
22
  ignoreDependencies: ['is-observable-2-1-0'],
22
23
  entry: [
23
- 'src/index.ts',
24
+ 'src/index-node.ts',
25
+ 'src/index-browser.ts',
24
26
  'src/master/implementation.browser.ts',
25
27
  'src/master/implementation.node.ts',
26
28
  'index.mjs',
27
- 'observable.{mjs,js}',
28
- 'register.{mjs,js}',
29
- 'worker.{mjs,js}',
30
29
  'src/master/register.ts',
31
- 'src/worker/bundle-entry.ts',
32
- 'test-tooling/**/*.{ts,js}',
33
- 'test/**/*.{ts,js}',
34
30
  ],
35
31
  },
36
32
  'packages/static-implements': { ignoreDependencies: ['tslib'] },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xylabs/sdk-js",
3
- "version": "4.11.18",
3
+ "version": "4.11.20",
4
4
  "description": "Base functionality used throughout XY Labs TypeScript/JavaScript libraries",
5
5
  "keywords": [
6
6
  "xylabs",
@@ -46,33 +46,33 @@
46
46
  "uuid": "^11"
47
47
  },
48
48
  "dependencies": {
49
- "@xylabs/api": "^4.11.18",
50
- "@xylabs/array": "^4.11.18",
51
- "@xylabs/assert": "^4.11.18",
52
- "@xylabs/axios": "^4.11.18",
53
- "@xylabs/crypto": "^4.11.18",
54
- "@xylabs/decimal-precision": "^4.11.18",
55
- "@xylabs/delay": "^4.11.18",
56
- "@xylabs/error": "^4.11.18",
57
- "@xylabs/eth-address": "^4.11.18",
58
- "@xylabs/exists": "^4.11.18",
59
- "@xylabs/forget": "^4.11.18",
60
- "@xylabs/function-name": "^4.11.18",
61
- "@xylabs/hex": "^4.11.18",
62
- "@xylabs/log": "^4.11.18",
63
- "@xylabs/logger": "^4.11.18",
64
- "@xylabs/object": "^4.11.18",
65
- "@xylabs/platform": "^4.11.18",
66
- "@xylabs/profile": "^4.11.18",
67
- "@xylabs/promise": "^4.11.18",
68
- "@xylabs/retry": "^4.11.18",
69
- "@xylabs/set": "^4.11.18",
70
- "@xylabs/static-implements": "^4.11.18",
71
- "@xylabs/timer": "^4.11.18",
72
- "@xylabs/url": "^4.11.18"
49
+ "@xylabs/api": "^4.11.20",
50
+ "@xylabs/array": "^4.11.20",
51
+ "@xylabs/assert": "^4.11.20",
52
+ "@xylabs/axios": "^4.11.20",
53
+ "@xylabs/crypto": "^4.11.20",
54
+ "@xylabs/decimal-precision": "^4.11.20",
55
+ "@xylabs/delay": "^4.11.20",
56
+ "@xylabs/error": "^4.11.20",
57
+ "@xylabs/eth-address": "^4.11.20",
58
+ "@xylabs/exists": "^4.11.20",
59
+ "@xylabs/forget": "^4.11.20",
60
+ "@xylabs/function-name": "^4.11.20",
61
+ "@xylabs/hex": "^4.11.20",
62
+ "@xylabs/log": "^4.11.20",
63
+ "@xylabs/logger": "^4.11.20",
64
+ "@xylabs/object": "^4.11.20",
65
+ "@xylabs/platform": "^4.11.20",
66
+ "@xylabs/profile": "^4.11.20",
67
+ "@xylabs/promise": "^4.11.20",
68
+ "@xylabs/retry": "^4.11.20",
69
+ "@xylabs/set": "^4.11.20",
70
+ "@xylabs/static-implements": "^4.11.20",
71
+ "@xylabs/timer": "^4.11.20",
72
+ "@xylabs/url": "^4.11.20"
73
73
  },
74
74
  "devDependencies": {
75
- "@types/node": "^22.15.30",
75
+ "@types/node": "^24.0.0",
76
76
  "@typescript-eslint/eslint-plugin": "^8.34.0",
77
77
  "@typescript-eslint/parser": "^8.34.0",
78
78
  "@xylabs/eslint-config-flat": "^6.5.8",
@@ -88,7 +88,7 @@
88
88
  "typescript": "^5.8.3",
89
89
  "vitest": "^3.2.3"
90
90
  },
91
- "packageManager": "yarn@4.9.1",
91
+ "packageManager": "yarn@4.9.2",
92
92
  "engines": {
93
93
  "node": ">=18.17.1"
94
94
  },