@harborclient/core 0.1.2 → 0.1.3
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 +6 -0
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 0.1.3 - 2026-07-25
|
|
6
|
+
|
|
7
|
+
- Update build process and documentation for @harborclient. (`694dc348`)
|
|
8
|
+
- chore(http): integrate @harborclient/http package into monorepo. (`2fdd858c`)
|
|
9
|
+
- chore(sdk): integrate SDK into monorepo and update related configurations. (`f9143029`)
|
|
10
|
+
|
|
5
11
|
## 0.1.2 - 2026-07-25
|
|
6
12
|
|
|
7
13
|
- chore(deps): update @harborclient/sdk to version 1.2.5 and enhance script error handling. (`dd2ab257`)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harborclient/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Platform-neutral HarborClient engine: types, request orchestration helpers, and shared utilities.",
|
|
5
5
|
"homepage": "https://harborclient.github.io/harborclient/core/",
|
|
6
6
|
"bugs": {
|
|
@@ -46,8 +46,6 @@
|
|
|
46
46
|
"access": "public"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@harborclient/http": "1.0.0",
|
|
50
|
-
"@harborclient/sdk": "1.2.0",
|
|
51
49
|
"@harborclient/team-hub-api": "0.4.0",
|
|
52
50
|
"@orama/orama": "^3.1.18",
|
|
53
51
|
"chai": "^4.5.0",
|
|
@@ -58,7 +56,9 @@
|
|
|
58
56
|
"openai": "^6.44.0",
|
|
59
57
|
"papaparse": "^5.5.4",
|
|
60
58
|
"ses": "^2.2.0",
|
|
61
|
-
"zod": "^4.4.3"
|
|
59
|
+
"zod": "^4.4.3",
|
|
60
|
+
"@harborclient/http": "^1.0.0",
|
|
61
|
+
"@harborclient/sdk": "^1.2.7"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
|
|
@@ -74,6 +74,7 @@
|
|
|
74
74
|
"vitest": "^4.1.9"
|
|
75
75
|
},
|
|
76
76
|
"scripts": {
|
|
77
|
+
"prebuild": "pnpm --filter @harborclient/sdk build && pnpm --filter @harborclient/http build",
|
|
77
78
|
"build": "tsc -p tsconfig.build.json && node scripts/assert-dist-publishable.mjs",
|
|
78
79
|
"clean": "rm -rf dist && find src -type f \\( -name '*.js' -o -name '*.d.ts' -o -name '*.js.map' -o -name '*.d.ts.map' \\) -delete",
|
|
79
80
|
"lint": "eslint --cache .",
|