@artemiskit/reports 0.1.3 → 0.1.4
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 +14 -0
- package/package.json +4 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @artemiskit/reports
|
|
2
2
|
|
|
3
|
+
## 0.1.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 367eb3b: fix: resolve npm install error caused by workspace:\* protocol
|
|
8
|
+
|
|
9
|
+
Fixed an issue where `npm i -g @artemiskit/cli` would fail with
|
|
10
|
+
"Unsupported URL Type workspace:_" error. The publish workflow now
|
|
11
|
+
automatically replaces workspace:_ dependencies with actual version
|
|
12
|
+
numbers before publishing to npm.
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [367eb3b]
|
|
15
|
+
- @artemiskit/core@0.1.4
|
|
16
|
+
|
|
3
17
|
## 0.1.3
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@artemiskit/reports",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "HTML report generation for ArtemisKit LLM evaluation toolkit",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -13,14 +13,8 @@
|
|
|
13
13
|
"bugs": {
|
|
14
14
|
"url": "https://github.com/code-sensei/artemiskit/issues"
|
|
15
15
|
},
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
"testing",
|
|
19
|
-
"reports",
|
|
20
|
-
"html",
|
|
21
|
-
"evaluation",
|
|
22
|
-
"artemiskit"
|
|
23
|
-
],
|
|
16
|
+
"homepage": "https://artemiskit.vercel.app",
|
|
17
|
+
"keywords": ["llm", "testing", "reports", "html", "evaluation", "artemiskit"],
|
|
24
18
|
"main": "./dist/index.js",
|
|
25
19
|
"types": "./dist/index.d.ts",
|
|
26
20
|
"exports": {
|
|
@@ -36,7 +30,7 @@
|
|
|
36
30
|
"test": "bun test"
|
|
37
31
|
},
|
|
38
32
|
"dependencies": {
|
|
39
|
-
"@artemiskit/core": "
|
|
33
|
+
"@artemiskit/core": "0.1.4",
|
|
40
34
|
"handlebars": "^4.7.8"
|
|
41
35
|
},
|
|
42
36
|
"devDependencies": {
|