@artemiskit/adapter-anthropic 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +4 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @artemiskit/adapter-anthropic
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/adapter-anthropic",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Anthropic Claude adapter for ArtemisKit LLM evaluation toolkit",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -13,13 +13,8 @@
13
13
  "bugs": {
14
14
  "url": "https://github.com/code-sensei/artemiskit/issues"
15
15
  },
16
- "keywords": [
17
- "llm",
18
- "anthropic",
19
- "claude",
20
- "adapter",
21
- "artemiskit"
22
- ],
16
+ "homepage": "https://artemiskit.vercel.app",
17
+ "keywords": ["llm", "anthropic", "claude", "adapter", "artemiskit"],
23
18
  "main": "./dist/index.js",
24
19
  "types": "./dist/index.d.ts",
25
20
  "exports": {
@@ -35,7 +30,7 @@
35
30
  "test": "bun test"
36
31
  },
37
32
  "dependencies": {
38
- "@artemiskit/core": "workspace:*",
33
+ "@artemiskit/core": "0.1.4",
39
34
  "@anthropic-ai/sdk": "^0.30.0",
40
35
  "nanoid": "^5.0.0"
41
36
  },