@artemiskit/core 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 +20 -0
  2. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
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
+
12
+ ## 0.1.4
13
+
14
+ ### Patch Changes
15
+
16
+ - 367eb3b: fix: resolve npm install error caused by workspace:\* protocol
17
+
18
+ Fixed an issue where `npm i -g @artemiskit/cli` would fail with
19
+ "Unsupported URL Type workspace:_" error. The publish workflow now
20
+ automatically replaces workspace:_ dependencies with actual version
21
+ numbers before publishing to npm.
22
+
3
23
  ## 0.1.3
4
24
 
5
25
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artemiskit/core",
3
- "version": "0.1.3",
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",
@@ -13,6 +13,7 @@
13
13
  "bugs": {
14
14
  "url": "https://github.com/code-sensei/artemiskit/issues"
15
15
  },
16
+ "homepage": "https://artemiskit.vercel.app",
16
17
  "keywords": [
17
18
  "llm",
18
19
  "testing",
@@ -46,11 +47,11 @@
46
47
  "fastest-levenshtein": "^1.0.16",
47
48
  "nanoid": "^5.0.0",
48
49
  "pino": "^8.17.0",
50
+ "pino-pretty": "^10.3.0",
49
51
  "prom-client": "^15.1.0"
50
52
  },
51
53
  "devDependencies": {
52
54
  "@types/bun": "^1.1.0",
53
- "pino-pretty": "^10.3.0",
54
55
  "typescript": "^5.3.0"
55
56
  }
56
57
  }