@bernierllc/ai-provider-anthropic 1.0.2 → 1.2.0
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 +46 -0
- package/package.json +16 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,49 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
# 1.2.0 (2025-12-25)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **ci:** add lerna version step before publish ([3d20300](https://github.com/bernierllc/tools/commit/3d203002143bf353fffafe4f8a78a99009567347))
|
|
12
|
+
* **ci:** correct jest testEnvironment paths for CI ([c47144c](https://github.com/bernierllc/tools/commit/c47144c3d78aec2be1e1454066c235c2227823fd))
|
|
13
|
+
* **ci:** fix release workflow + convert internal deps to workspace:* ([01c078b](https://github.com/bernierllc/tools/commit/01c078b49d6025f7eef750f79207a1c71c8d85dc))
|
|
14
|
+
* **jest:** move global options to root config and fix typos ([c14710c](https://github.com/bernierllc/tools/commit/c14710c11e8fc34dd7f773edf01328151564323a))
|
|
15
|
+
* **jest:** resolve Node.js v25+ localStorage SecurityError ([8ffc512](https://github.com/bernierllc/tools/commit/8ffc512805519bc5ba523bdbcd1c457e84998c9e))
|
|
16
|
+
* update neverhub-adapter deps to workspace:* and publish 0.1.2 ([f0e3d04](https://github.com/bernierllc/tools/commit/f0e3d04d8d4f094e3bb899ddf81e93243d16e2c2))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
* **ai-provider-anthropic:** Complete implementation with 96% compliance ([053ec23](https://github.com/bernierllc/tools/commit/053ec23b31c8dfa46ae1f0e0585a26af2b389d61))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
# 1.1.0 (2025-12-25)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Bug Fixes
|
|
31
|
+
|
|
32
|
+
* **ci:** correct jest testEnvironment paths for CI ([c47144c](https://github.com/bernierllc/tools/commit/c47144c3d78aec2be1e1454066c235c2227823fd))
|
|
33
|
+
* **ci:** fix release workflow + convert internal deps to workspace:* ([01c078b](https://github.com/bernierllc/tools/commit/01c078b49d6025f7eef750f79207a1c71c8d85dc))
|
|
34
|
+
* **jest:** move global options to root config and fix typos ([c14710c](https://github.com/bernierllc/tools/commit/c14710c11e8fc34dd7f773edf01328151564323a))
|
|
35
|
+
* **jest:** resolve Node.js v25+ localStorage SecurityError ([8ffc512](https://github.com/bernierllc/tools/commit/8ffc512805519bc5ba523bdbcd1c457e84998c9e))
|
|
36
|
+
* update neverhub-adapter deps to workspace:* and publish 0.1.2 ([f0e3d04](https://github.com/bernierllc/tools/commit/f0e3d04d8d4f094e3bb899ddf81e93243d16e2c2))
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Features
|
|
40
|
+
|
|
41
|
+
* **ai-provider-anthropic:** Complete implementation with 96% compliance ([053ec23](https://github.com/bernierllc/tools/commit/053ec23b31c8dfa46ae1f0e0585a26af2b389d61))
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
1
47
|
# @bernierllc/ai-provider-anthropic
|
|
2
48
|
|
|
3
49
|
## 1.0.2
|
package/package.json
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bernierllc/ai-provider-anthropic",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Anthropic Claude API adapter implementing the unified AI provider interface",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "tsc",
|
|
9
|
+
"test": "jest --watch",
|
|
10
|
+
"test:run": "jest",
|
|
11
|
+
"test:coverage": "jest --coverage",
|
|
12
|
+
"lint": "eslint src --ext .ts",
|
|
13
|
+
"clean": "rm -rf dist"
|
|
14
|
+
},
|
|
7
15
|
"keywords": [
|
|
8
16
|
"ai",
|
|
9
17
|
"provider",
|
|
@@ -18,11 +26,12 @@
|
|
|
18
26
|
"license": "SEE LICENSE IN LICENSE",
|
|
19
27
|
"dependencies": {
|
|
20
28
|
"@anthropic-ai/sdk": "^0.20.0",
|
|
21
|
-
"@bernierllc/ai-provider-core": "1.0
|
|
22
|
-
"@bernierllc/
|
|
23
|
-
"@bernierllc/
|
|
29
|
+
"@bernierllc/ai-provider-core": "1.2.0",
|
|
30
|
+
"@bernierllc/logger": "1.3.0",
|
|
31
|
+
"@bernierllc/retry-policy": "0.3.0"
|
|
24
32
|
},
|
|
25
33
|
"devDependencies": {
|
|
34
|
+
"@bernierllc/neverhub-adapter": "0.1.4",
|
|
26
35
|
"@types/jest": "^29.5.0",
|
|
27
36
|
"@types/node": "^20.0.0",
|
|
28
37
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
@@ -30,8 +39,7 @@
|
|
|
30
39
|
"eslint": "^8.50.0",
|
|
31
40
|
"jest": "^29.7.0",
|
|
32
41
|
"ts-jest": "^29.1.0",
|
|
33
|
-
"typescript": "^5.3.0"
|
|
34
|
-
"@bernierllc/neverhub-adapter": "0.1.2"
|
|
42
|
+
"typescript": "^5.3.0"
|
|
35
43
|
},
|
|
36
44
|
"bernierllc": {
|
|
37
45
|
"category": "core",
|
|
@@ -52,12 +60,5 @@
|
|
|
52
60
|
"access": "public",
|
|
53
61
|
"registry": "https://registry.npmjs.org/"
|
|
54
62
|
},
|
|
55
|
-
"
|
|
56
|
-
|
|
57
|
-
"test": "jest --watch",
|
|
58
|
-
"test:run": "jest",
|
|
59
|
-
"test:coverage": "jest --coverage",
|
|
60
|
-
"lint": "eslint src --ext .ts",
|
|
61
|
-
"clean": "rm -rf dist"
|
|
62
|
-
}
|
|
63
|
-
}
|
|
63
|
+
"gitHead": "af7e74b3715d56d3a193e1bb6743b337c2b0df6d"
|
|
64
|
+
}
|