@artemiskit/reports 0.1.3 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/package.json +4 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # @artemiskit/reports
2
2
 
3
+ ## 0.1.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [8e10aaa]
8
+ - @artemiskit/core@0.1.5
9
+
10
+ ## 0.1.4
11
+
12
+ ### Patch Changes
13
+
14
+ - 367eb3b: fix: resolve npm install error caused by workspace:\* protocol
15
+
16
+ Fixed an issue where `npm i -g @artemiskit/cli` would fail with
17
+ "Unsupported URL Type workspace:_" error. The publish workflow now
18
+ automatically replaces workspace:_ dependencies with actual version
19
+ numbers before publishing to npm.
20
+
21
+ - Updated dependencies [367eb3b]
22
+ - @artemiskit/core@0.1.4
23
+
3
24
  ## 0.1.3
4
25
 
5
26
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artemiskit/reports",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
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
- "keywords": [
17
- "llm",
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": "workspace:*",
33
+ "@artemiskit/core": "0.1.5",
40
34
  "handlebars": "^4.7.8"
41
35
  },
42
36
  "devDependencies": {