@agentica/chat 0.12.17 → 0.12.19
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 +13 -14
package/package.json
CHANGED
|
@@ -1,20 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@agentica/chat",
|
|
4
|
-
"version": "0.12.
|
|
4
|
+
"version": "0.12.19",
|
|
5
5
|
"main": "./lib/index.mjs",
|
|
6
6
|
"typings": "./lib/index.d.ts",
|
|
7
7
|
"description": "Frontend Application of Agentica",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"build": "npm run build:static && npm run build:lib",
|
|
10
|
-
"build:static": "rimraf dist && tsc -b && vite build",
|
|
11
|
-
"build:lib": "rimraf lib && tsc --project tsconfig.lib.json --emitDeclarationOnly && rollup -c",
|
|
12
|
-
"dev": "vite",
|
|
13
|
-
"lint": "eslint .",
|
|
14
|
-
"prepare": "ts-patch install",
|
|
15
|
-
"preview": "vite preview",
|
|
16
|
-
"deploy": "node build/deploy.mjs"
|
|
17
|
-
},
|
|
18
8
|
"repository": {
|
|
19
9
|
"type": "git",
|
|
20
10
|
"url": "https://github.com/wrtnlabs/agentica"
|
|
@@ -36,7 +26,6 @@
|
|
|
36
26
|
},
|
|
37
27
|
"homepage": "https://wrtnlabs.io/agentica",
|
|
38
28
|
"dependencies": {
|
|
39
|
-
"@agentica/core": "^0.12.17",
|
|
40
29
|
"@mui/icons-material": "^6.4.0",
|
|
41
30
|
"@mui/material": "^6.4.0",
|
|
42
31
|
"@samchon/openapi": "^3.0.0",
|
|
@@ -47,7 +36,8 @@
|
|
|
47
36
|
"rehype-stringify": "^10.0.1",
|
|
48
37
|
"remark-mermaid-plugin": "^1.0.2",
|
|
49
38
|
"typia": "^8.0.0",
|
|
50
|
-
"uuid": "^11.0.5"
|
|
39
|
+
"uuid": "^11.0.5",
|
|
40
|
+
"@agentica/core": "^0.12.19"
|
|
51
41
|
},
|
|
52
42
|
"devDependencies": {
|
|
53
43
|
"@eslint/js": "^9.13.0",
|
|
@@ -88,5 +78,14 @@
|
|
|
88
78
|
"lib",
|
|
89
79
|
"src",
|
|
90
80
|
"!src/examples"
|
|
91
|
-
]
|
|
81
|
+
],
|
|
82
|
+
"scripts": {
|
|
83
|
+
"build": "npm run build:static && npm run build:lib",
|
|
84
|
+
"build:static": "rimraf dist && tsc -b && vite build",
|
|
85
|
+
"build:lib": "rimraf lib && tsc --project tsconfig.lib.json --emitDeclarationOnly && rollup -c",
|
|
86
|
+
"dev": "vite",
|
|
87
|
+
"lint": "eslint .",
|
|
88
|
+
"preview": "vite preview",
|
|
89
|
+
"deploy": "node build/deploy.mjs"
|
|
90
|
+
}
|
|
92
91
|
}
|