@flutchai/flutch-sdk 0.1.1 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +4 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -205,7 +205,10 @@ The package has no internal dependencies and relies only on well-established ext
205
205
  ## Quick Start
206
206
 
207
207
  ```typescript
208
- import { UniversalGraphModule, AbstractGraphBuilder } from "@flutchai/flutch-sdk";
208
+ import {
209
+ UniversalGraphModule,
210
+ AbstractGraphBuilder,
211
+ } from "@flutchai/flutch-sdk";
209
212
  import { Module } from "@nestjs/common";
210
213
 
211
214
  @Injectable()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flutchai/flutch-sdk",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Base infrastructure package for building graph microservices - core interfaces, types, utilities, and execution engine",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -14,7 +14,7 @@
14
14
  },
15
15
  "repository": {
16
16
  "type": "git",
17
- "url": "https://github.com/flutchai/flutch3.git",
17
+ "url": "https://github.com/flutchai/flutch.git",
18
18
  "directory": "packages/sdk"
19
19
  },
20
20
  "keywords": [
@@ -34,7 +34,7 @@
34
34
  "build": "npx tsc",
35
35
  "test": "jest",
36
36
  "lint": "eslint .",
37
- "prepublishOnly": "yarn build"
37
+ "prepublishOnly": "npm run build"
38
38
  },
39
39
  "dependencies": {
40
40
  "@langchain/anthropic": "^0.3.0",