@batonfx/foldkit 0.4.0 → 0.4.1

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,20 +1,23 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@batonfx/foldkit",
4
- "version": "0.4.0",
4
+ "version": "0.4.1",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "exports": {
8
- ".": "./src/index.ts"
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "import": "./dist/index.js"
11
+ }
9
12
  },
10
13
  "scripts": {
11
- "build": "bun build ./src/index.ts --outdir dist --target bun --format esm",
14
+ "build": "rm -rf dist && bun tsc -p tsconfig.build.json",
12
15
  "lint": "bun --cwd ../.. oxlint packages/foldkit/src packages/foldkit/test",
13
16
  "test": "bun --cwd ../.. vitest run packages/foldkit/test --passWithNoTests",
14
17
  "typecheck": "bun tsc --noEmit"
15
18
  },
16
19
  "dependencies": {
17
- "@batonfx/transport": "0.4.0"
20
+ "@batonfx/transport": "0.4.1"
18
21
  },
19
22
  "peerDependencies": {
20
23
  "effect": ">=4.0.0-beta.88 <4.0.1",
@@ -27,5 +30,27 @@
27
30
  "foldkit": "0.122.0",
28
31
  "typescript": "5.8.2",
29
32
  "vitest": "4.0.16"
33
+ },
34
+ "description": "FoldKit adapter for Baton transport sessions and chat UI",
35
+ "sideEffects": false,
36
+ "files": [
37
+ "dist",
38
+ "README.md"
39
+ ],
40
+ "engines": {
41
+ "node": ">=22",
42
+ "bun": ">=1.3.0"
43
+ },
44
+ "repository": {
45
+ "type": "git",
46
+ "url": "git+https://github.com/In-Time-Tec/batonfx.git",
47
+ "directory": "packages/foldkit"
48
+ },
49
+ "homepage": "https://github.com/In-Time-Tec/batonfx#readme",
50
+ "bugs": {
51
+ "url": "https://github.com/In-Time-Tec/batonfx/issues"
52
+ },
53
+ "publishConfig": {
54
+ "access": "public"
30
55
  }
31
56
  }
@@ -1,5 +0,0 @@
1
- $ bun build ./src/index.ts --outdir dist --target bun --format esm
2
- Bundled 223 modules in 106ms
3
-
4
- index.js 1.32 MB (entry point)
5
-