@xylabs/sdk-js 4.8.0 → 4.8.4

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 +10 -16
  2. package/package.json +27 -33
package/knip.config.ts CHANGED
@@ -2,23 +2,23 @@ import type { KnipConfig } from 'knip'
2
2
 
3
3
  const config: KnipConfig = {
4
4
  ignoreDependencies: ['@xylabs/ts-scripts-yarn3'],
5
- ignore: ['xy.config.ts'],
6
- entry: ['src/index.ts'],
5
+ entry: ['src/index.ts', 'xy.config.ts'],
7
6
  workspaces: {
8
7
  '.': {
9
- entry: ['src/index.ts'],
10
- ignore: ['xy.config.ts'],
8
+ entry: ['src/index.ts', 'eslint.config.mjs', 'xy.config.ts'],
9
+ ignoreDependencies: [
10
+ 'eslint',
11
+ '@typescript-eslint/eslint-plugin',
12
+ 'eslint-import-resolver-typescript',
13
+ ],
11
14
  },
12
15
  'packages/buffer': {
13
16
  ignoreDependencies: ['buffer'],
14
- ignore: ['xy.config.ts'],
15
17
  entry: ['src/index.ts', 'src/node/index.ts', 'src/browser/index.ts'],
16
18
  },
17
- 'packages/*': {
18
- entry: ['src/index.ts', 'src/node/index.ts', 'src/browser/index.ts', 'src/neutral/index.ts'],
19
- ignore: ['xy.config.ts'],
20
- },
19
+ 'packages/*': { entry: ['src/index.ts', 'src/node/index.ts', 'src/browser/index.ts', 'src/neutral/index.ts'] },
21
20
  'packages/threads': {
21
+ ignoreDependencies: ['is-observable-2-1-0'],
22
22
  entry: [
23
23
  'src/index.ts',
24
24
  'src/master/implementation.browser.ts',
@@ -32,14 +32,8 @@ const config: KnipConfig = {
32
32
  'test-tooling/**/*.{ts,js}',
33
33
  'test/**/*.{ts,js}',
34
34
  ],
35
- ignore: ['xy.config.ts'],
36
35
  },
37
- },
38
- typescript: {
39
- config: [
40
- 'tsconfig.json',
41
- 'packages/**/*/tsconfig.json',
42
- ],
36
+ 'packages/static-implements': { ignoreDependencies: ['tslib'] },
43
37
  },
44
38
  }
45
39
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xylabs/sdk-js",
3
- "version": "4.8.0",
3
+ "version": "4.8.4",
4
4
  "description": "Base functionality used throughout XY Labs TypeScript/JavaScript libraries",
5
5
  "keywords": [
6
6
  "xylabs",
@@ -46,53 +46,47 @@
46
46
  "uuid": "^11"
47
47
  },
48
48
  "dependencies": {
49
- "@xylabs/api": "^4.8.0",
50
- "@xylabs/array": "^4.8.0",
51
- "@xylabs/assert": "^4.8.0",
52
- "@xylabs/axios": "^4.8.0",
53
- "@xylabs/crypto": "^4.8.0",
54
- "@xylabs/decimal-precision": "^4.8.0",
55
- "@xylabs/delay": "^4.8.0",
56
- "@xylabs/error": "^4.8.0",
57
- "@xylabs/eth-address": "^4.8.0",
58
- "@xylabs/exists": "^4.8.0",
59
- "@xylabs/forget": "^4.8.0",
60
- "@xylabs/function-name": "^4.8.0",
61
- "@xylabs/hex": "^4.8.0",
62
- "@xylabs/log": "^4.8.0",
63
- "@xylabs/logger": "^4.8.0",
64
- "@xylabs/object": "^4.8.0",
65
- "@xylabs/platform": "^4.8.0",
66
- "@xylabs/profile": "^4.8.0",
67
- "@xylabs/promise": "^4.8.0",
68
- "@xylabs/retry": "^4.8.0",
69
- "@xylabs/set": "^4.8.0",
70
- "@xylabs/static-implements": "^4.8.0",
71
- "@xylabs/timer": "^4.8.0",
72
- "@xylabs/url": "^4.8.0"
49
+ "@xylabs/api": "^4.8.4",
50
+ "@xylabs/array": "^4.8.4",
51
+ "@xylabs/assert": "^4.8.4",
52
+ "@xylabs/axios": "^4.8.4",
53
+ "@xylabs/crypto": "^4.8.4",
54
+ "@xylabs/decimal-precision": "^4.8.4",
55
+ "@xylabs/delay": "^4.8.4",
56
+ "@xylabs/error": "^4.8.4",
57
+ "@xylabs/eth-address": "^4.8.4",
58
+ "@xylabs/exists": "^4.8.4",
59
+ "@xylabs/forget": "^4.8.4",
60
+ "@xylabs/function-name": "^4.8.4",
61
+ "@xylabs/hex": "^4.8.4",
62
+ "@xylabs/log": "^4.8.4",
63
+ "@xylabs/logger": "^4.8.4",
64
+ "@xylabs/object": "^4.8.4",
65
+ "@xylabs/platform": "^4.8.4",
66
+ "@xylabs/profile": "^4.8.4",
67
+ "@xylabs/promise": "^4.8.4",
68
+ "@xylabs/retry": "^4.8.4",
69
+ "@xylabs/set": "^4.8.4",
70
+ "@xylabs/static-implements": "^4.8.4",
71
+ "@xylabs/timer": "^4.8.4",
72
+ "@xylabs/url": "^4.8.4"
73
73
  },
74
74
  "devDependencies": {
75
75
  "@types/node": "^22.14.0",
76
76
  "@typescript-eslint/eslint-plugin": "^8.29.1",
77
- "@typescript-eslint/parser": "^8.29.1",
78
- "@xylabs/config": "^6.2.1",
79
77
  "@xylabs/eslint-config-flat": "^6.2.1",
80
78
  "@xylabs/ts-scripts-yarn3": "^6.2.1",
81
79
  "@xylabs/tsconfig": "^6.2.1",
82
- "@xylabs/tsconfig-dom": "^6.2.1",
83
80
  "dotenv": "^16.4.7",
84
81
  "eslint": "^9.24.0",
85
82
  "eslint-import-resolver-typescript": "^4.3.2",
86
83
  "jsdom": "^26.0.0",
87
- "knip": "^5.47.0",
88
- "reflect-metadata": "^0.2.2",
89
- "ts-node": "^10.9.2",
84
+ "knip": "^5.48.0",
90
85
  "typedoc": "^0.28.2",
91
86
  "typescript": "^5.8.3",
92
- "vite": "^6.2.5",
93
87
  "vitest": "^3.1.1"
94
88
  },
95
- "packageManager": "yarn@4.8.0",
89
+ "packageManager": "yarn@4.9.0",
96
90
  "engines": {
97
91
  "node": ">=18.17.1"
98
92
  },