@artemiskit/cli 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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,34 @@
1
1
  # @artemiskit/cli
2
2
 
3
+ ## 0.1.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [8e10aaa]
8
+ - @artemiskit/core@0.1.5
9
+ - @artemiskit/adapter-openai@0.1.5
10
+ - @artemiskit/adapter-vercel-ai@0.1.5
11
+ - @artemiskit/redteam@0.1.5
12
+ - @artemiskit/reports@0.1.5
13
+
14
+ ## 0.1.4
15
+
16
+ ### Patch Changes
17
+
18
+ - 367eb3b: fix: resolve npm install error caused by workspace:\* protocol
19
+
20
+ Fixed an issue where `npm i -g @artemiskit/cli` would fail with
21
+ "Unsupported URL Type workspace:_" error. The publish workflow now
22
+ automatically replaces workspace:_ dependencies with actual version
23
+ numbers before publishing to npm.
24
+
25
+ - Updated dependencies [367eb3b]
26
+ - @artemiskit/adapter-openai@0.1.4
27
+ - @artemiskit/adapter-vercel-ai@0.1.4
28
+ - @artemiskit/core@0.1.4
29
+ - @artemiskit/redteam@0.1.4
30
+ - @artemiskit/reports@0.1.4
31
+
3
32
  ## 0.1.3
4
33
 
5
34
  ### Patch Changes
package/dist/index.js CHANGED
@@ -12107,7 +12107,7 @@ var {
12107
12107
  Help
12108
12108
  } = import__.default;
12109
12109
  // package.json
12110
- var version = "0.1.2";
12110
+ var version = "0.1.4";
12111
12111
 
12112
12112
  // ../../node_modules/.bun/chalk@5.6.2/node_modules/chalk/source/vendor/ansi-styles/index.js
12113
12113
  var ANSI_BACKGROUND_OFFSET = 10;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artemiskit/cli",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "Command-line interface 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",
@@ -44,11 +45,11 @@
44
45
  "test": "bun test"
45
46
  },
46
47
  "dependencies": {
47
- "@artemiskit/adapter-openai": "workspace:*",
48
- "@artemiskit/adapter-vercel-ai": "workspace:*",
49
- "@artemiskit/core": "workspace:*",
50
- "@artemiskit/redteam": "workspace:*",
51
- "@artemiskit/reports": "workspace:*",
48
+ "@artemiskit/adapter-openai": "0.1.5",
49
+ "@artemiskit/adapter-vercel-ai": "0.1.5",
50
+ "@artemiskit/core": "0.1.5",
51
+ "@artemiskit/redteam": "0.1.5",
52
+ "@artemiskit/reports": "0.1.5",
52
53
  "chalk": "^5.3.0",
53
54
  "cli-table3": "^0.6.3",
54
55
  "commander": "^12.0.0",