lua-ai-chat 0.0.4 → 0.0.5
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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +11 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lua-ai-chat",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "Lua Chat UI Components - A comprehensive set of React components for building chat interfaces",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -17,15 +17,6 @@
|
|
|
17
17
|
"dist",
|
|
18
18
|
"README.md"
|
|
19
19
|
],
|
|
20
|
-
"scripts": {
|
|
21
|
-
"build": "tsup src/index.ts --format esm,cjs --dts --clean --external react --external react-dom",
|
|
22
|
-
"dev": "tsup src/index.ts --format esm,cjs --dts --watch --external react --external react-dom",
|
|
23
|
-
"lint": "biome check .",
|
|
24
|
-
"clean": "rm -rf dist",
|
|
25
|
-
"test:unit": "vitest run",
|
|
26
|
-
"test:unit:watch": "vitest",
|
|
27
|
-
"prepublishOnly": "pnpm run build"
|
|
28
|
-
},
|
|
29
20
|
"keywords": [
|
|
30
21
|
"chat",
|
|
31
22
|
"ui",
|
|
@@ -50,7 +41,7 @@
|
|
|
50
41
|
"dependencies": {
|
|
51
42
|
"@radix-ui/react-visually-hidden": "^1.2.0",
|
|
52
43
|
"react-router-dom": "^7.0.0",
|
|
53
|
-
"luaniverse": "^4.0.
|
|
44
|
+
"luaniverse": "^4.0.43",
|
|
54
45
|
"firebase": "^10.8.0",
|
|
55
46
|
"prism-react-renderer": "^2.4.1",
|
|
56
47
|
"react-leaflet": "^4.2.1",
|
|
@@ -83,5 +74,13 @@
|
|
|
83
74
|
},
|
|
84
75
|
"publishConfig": {
|
|
85
76
|
"access": "public"
|
|
77
|
+
},
|
|
78
|
+
"scripts": {
|
|
79
|
+
"build": "tsup src/index.ts --format esm,cjs --dts --clean --external react --external react-dom",
|
|
80
|
+
"dev": "tsup src/index.ts --format esm,cjs --dts --watch --external react --external react-dom",
|
|
81
|
+
"lint": "biome check .",
|
|
82
|
+
"clean": "rm -rf dist",
|
|
83
|
+
"test:unit": "vitest run",
|
|
84
|
+
"test:unit:watch": "vitest"
|
|
86
85
|
}
|
|
87
|
-
}
|
|
86
|
+
}
|