@artemiskit/cli 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 +18 -0
- package/dist/index.js +1 -1
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @artemiskit/cli
|
|
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/adapter-openai@0.1.4
|
|
16
|
+
- @artemiskit/adapter-vercel-ai@0.1.4
|
|
17
|
+
- @artemiskit/core@0.1.4
|
|
18
|
+
- @artemiskit/redteam@0.1.4
|
|
19
|
+
- @artemiskit/reports@0.1.4
|
|
20
|
+
|
|
3
21
|
## 0.1.3
|
|
4
22
|
|
|
5
23
|
### 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.
|
|
12110
|
+
var version = "0.1.3";
|
|
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
|
+
"version": "0.1.4",
|
|
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": "
|
|
48
|
-
"@artemiskit/adapter-vercel-ai": "
|
|
49
|
-
"@artemiskit/core": "
|
|
50
|
-
"@artemiskit/redteam": "
|
|
51
|
-
"@artemiskit/reports": "
|
|
48
|
+
"@artemiskit/adapter-openai": "0.1.4",
|
|
49
|
+
"@artemiskit/adapter-vercel-ai": "0.1.4",
|
|
50
|
+
"@artemiskit/core": "0.1.4",
|
|
51
|
+
"@artemiskit/redteam": "0.1.4",
|
|
52
|
+
"@artemiskit/reports": "0.1.4",
|
|
52
53
|
"chalk": "^5.3.0",
|
|
53
54
|
"cli-table3": "^0.6.3",
|
|
54
55
|
"commander": "^12.0.0",
|