@skein-js/config 0.5.0 → 0.6.3

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/dist/index.js +3 -1
  2. package/package.json +5 -5
package/dist/index.js CHANGED
@@ -316,7 +316,9 @@ async function loadAuthEngine(auth, options) {
316
316
  }
317
317
  const exported = module[spec.exportSymbol];
318
318
  if (exported == null) {
319
- throw new SkeinConfigError(`Auth module "${spec.sourceFile}" has no export "${spec.exportSymbol}".`);
319
+ throw new SkeinConfigError(
320
+ `Auth module "${spec.sourceFile}" has no export "${spec.exportSymbol}".`
321
+ );
320
322
  }
321
323
  if (!isAuthInstance(exported)) {
322
324
  throw new SkeinConfigError(
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@skein-js/config",
3
- "version": "0.5.0",
3
+ "version": "0.6.3",
4
4
  "description": "langgraph.json parser and graph loader (path:export) for skein-js.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Maina Wycliffe <wmmaina7@gmail.com>",
7
- "homepage": "https://github.com/mainawycliffe/skein-js/tree/main/packages/config#readme",
7
+ "homepage": "https://github.com/skein-js/skein-js/tree/main/packages/config#readme",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/mainawycliffe/skein-js.git",
10
+ "url": "git+https://github.com/skein-js/skein-js.git",
11
11
  "directory": "packages/config"
12
12
  },
13
13
  "bugs": {
14
- "url": "https://github.com/mainawycliffe/skein-js/issues"
14
+ "url": "https://github.com/skein-js/skein-js/issues"
15
15
  },
16
16
  "keywords": [
17
17
  "typescript",
@@ -42,7 +42,7 @@
42
42
  "dependencies": {
43
43
  "@langchain/langgraph-api": "^1.4.0",
44
44
  "zod": "^3.25.76",
45
- "@skein-js/core": "0.5.0"
45
+ "@skein-js/core": "0.6.3"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "@langchain/langgraph": "^1.4.0",