@spekoai/sdk 0.0.1 → 0.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +5 -1
package/CHANGELOG.md CHANGED
@@ -6,3 +6,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
8
  ## [Unreleased]
9
+
10
+ ## [0.0.3] - 2026-04-13
11
+
12
+ ### Fixed
13
+
14
+ - Add `typescript` + `@types/node` as devDependencies so the mirror publish build (`npm install --no-save` + `npx tsc`) resolves the real compiler instead of the squatter `tsc@2.0.4` npm package.
15
+
16
+ ## [0.0.2] - 2026-04-13
17
+
18
+ ### Changed
19
+
20
+ - Package scope renamed from `@speko/sdk` to `@spekoai/sdk`.
21
+
22
+ ### Fixed
23
+
24
+ - Mirror publish workflow now uses trusted-publisher OIDC (Node 24 / npm 11), omits stale `registry-url`, drops deprecated `baseUrl`, and uses `--generate-notes` for GitHub releases from lightweight mirror tags.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spekoai/sdk",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Official Speko TypeScript SDK — one API, every voice provider",
5
5
  "license": "MIT",
6
6
  "author": "Speko",
@@ -48,5 +48,9 @@
48
48
  },
49
49
  "dependencies": {
50
50
  "tslib": "^2.3.0"
51
+ },
52
+ "devDependencies": {
53
+ "@types/node": "^20",
54
+ "typescript": "~5.9.2"
51
55
  }
52
56
  }