@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/README.md +5 -0
- package/dist/chat.d.ts +271 -0
- package/dist/chat.js +605 -0
- package/dist/connection.d.ts +41 -0
- package/dist/connection.js +70 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -40015
- package/package.json +29 -4
- package/.turbo/turbo-build.log +0 -5
- package/src/chat.ts +0 -876
- package/src/connection.ts +0 -133
- package/src/index.ts +0 -2
- package/test/chat.scene.test.ts +0 -152
- package/test/chat.story.test.ts +0 -110
- package/test/chat.test.ts +0 -154
- package/test/connection.test.ts +0 -35
- package/tsconfig.json +0 -7
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.
|
|
4
|
+
"version": "0.4.1",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
7
7
|
"exports": {
|
|
8
|
-
".":
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"import": "./dist/index.js"
|
|
11
|
+
}
|
|
9
12
|
},
|
|
10
13
|
"scripts": {
|
|
11
|
-
"build": "
|
|
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.
|
|
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
|
}
|