@artemiskit/core 0.1.4 → 0.1.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/CHANGELOG.md +9 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @artemiskit/core
|
|
2
2
|
|
|
3
|
+
## 0.1.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8e10aaa: fix: move pino-pretty from devDependencies to dependencies
|
|
8
|
+
|
|
9
|
+
Fixes runtime error "unable to determine transport target for pino-pretty"
|
|
10
|
+
when running the CLI after global npm install.
|
|
11
|
+
|
|
3
12
|
## 0.1.4
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@artemiskit/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Core runner, evaluators, and storage for ArtemisKit LLM evaluation toolkit",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"fastest-levenshtein": "^1.0.16",
|
|
48
48
|
"nanoid": "^5.0.0",
|
|
49
49
|
"pino": "^8.17.0",
|
|
50
|
+
"pino-pretty": "^10.3.0",
|
|
50
51
|
"prom-client": "^15.1.0"
|
|
51
52
|
},
|
|
52
53
|
"devDependencies": {
|
|
53
54
|
"@types/bun": "^1.1.0",
|
|
54
|
-
"pino-pretty": "^10.3.0",
|
|
55
55
|
"typescript": "^5.3.0"
|
|
56
56
|
}
|
|
57
57
|
}
|