We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfe82c3 commit 6f086acCopy full SHA for 6f086ac
.changeset/cruel-apples-glow.md
@@ -0,0 +1,5 @@
1
+---
2
+"@llama-flow/llamaindex": patch
3
4
+
5
+fix: bundle package
packages/llamaindex/package.json
@@ -3,7 +3,18 @@
"version": "0.0.6",
"type": "module",
"description": "LlamaIndex binding for llama-flow",
6
+ "main": "dist/index.cjs",
7
+ "module": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ }
15
+ },
16
"scripts": {
17
+ "build": "bunchee",
18
"test": "vitest run"
19
},
20
"files": [
@@ -20,5 +31,8 @@
31
21
32
"publishConfig": {
22
33
"access": "public"
34
35
+ "devDependencies": {
36
+ "bunchee": "^6.5.1"
23
37
}
24
38
0 commit comments