@macpaw/ai-sdk 0.1.0 → 1.0.0-rc.2
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 +7 -0
- package/package.json +24 -22
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [1.0.0-rc.2](https://github.com/MacPaw/ai-sdk-typescript/compare/v1.0.0-rc.1...v1.0.0-rc.2) (2026-04-01)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* update Node.js version in release workflow and enhance tool version visibility ([a86be3a](https://github.com/MacPaw/ai-sdk-typescript/commit/a86be3a06107e92af665a1bcbb1303730f3a5f56))
|
|
7
|
+
|
|
1
8
|
# @macpaw/ai-sdk
|
|
2
9
|
|
|
3
10
|
> Changelog is maintained by [semantic-release](https://github.com/semantic-release/semantic-release). Versions and entries are added automatically on release; do not edit version headings manually.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@macpaw/ai-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0-rc.2",
|
|
4
4
|
"description": "Vercel AI SDK extension layer for AI Gateway with MacPaw and Setapp auth flows",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -54,9 +54,28 @@
|
|
|
54
54
|
"engines": {
|
|
55
55
|
"node": ">=18.0.0"
|
|
56
56
|
},
|
|
57
|
+
"packageManager": "pnpm@10.15.1",
|
|
57
58
|
"publishConfig": {
|
|
58
59
|
"access": "restricted"
|
|
59
60
|
},
|
|
61
|
+
"scripts": {
|
|
62
|
+
"build": "tsup",
|
|
63
|
+
"dev": "tsup --watch",
|
|
64
|
+
"typecheck": "tsc --noEmit",
|
|
65
|
+
"lint": "eslint .",
|
|
66
|
+
"lint:fix": "eslint . --fix",
|
|
67
|
+
"format": "prettier --write .",
|
|
68
|
+
"format:check": "prettier --check .",
|
|
69
|
+
"test": "vitest run",
|
|
70
|
+
"test:watch": "vitest",
|
|
71
|
+
"test:coverage": "vitest run --coverage",
|
|
72
|
+
"docs": "typedoc",
|
|
73
|
+
"docs:watch": "typedoc --watch",
|
|
74
|
+
"size:pack": "npm pack --dry-run",
|
|
75
|
+
"verify:release": "pnpm typecheck && pnpm lint && pnpm test && pnpm build && pnpm size:pack",
|
|
76
|
+
"example:provider": "pnpm build && node examples/vercel-provider.mjs",
|
|
77
|
+
"prepublishOnly": "pnpm build"
|
|
78
|
+
},
|
|
60
79
|
"keywords": [
|
|
61
80
|
"ai",
|
|
62
81
|
"ai-sdk-typescript",
|
|
@@ -74,11 +93,11 @@
|
|
|
74
93
|
"license": "MIT",
|
|
75
94
|
"repository": {
|
|
76
95
|
"type": "git",
|
|
77
|
-
"url": "https://github.com/
|
|
96
|
+
"url": "git+https://github.com/MacPaw/ai-sdk-typescript.git"
|
|
78
97
|
},
|
|
79
|
-
"homepage": "https://github.com/
|
|
98
|
+
"homepage": "https://github.com/MacPaw/ai-sdk-typescript#readme",
|
|
80
99
|
"bugs": {
|
|
81
|
-
"url": "https://github.com/
|
|
100
|
+
"url": "https://github.com/MacPaw/ai-sdk-typescript/issues"
|
|
82
101
|
},
|
|
83
102
|
"devDependencies": {
|
|
84
103
|
"@ai-sdk/openai": "3.0.49",
|
|
@@ -107,22 +126,5 @@
|
|
|
107
126
|
"@nestjs/common": {
|
|
108
127
|
"optional": true
|
|
109
128
|
}
|
|
110
|
-
},
|
|
111
|
-
"scripts": {
|
|
112
|
-
"build": "tsup",
|
|
113
|
-
"dev": "tsup --watch",
|
|
114
|
-
"typecheck": "tsc --noEmit",
|
|
115
|
-
"lint": "eslint .",
|
|
116
|
-
"lint:fix": "eslint . --fix",
|
|
117
|
-
"format": "prettier --write .",
|
|
118
|
-
"format:check": "prettier --check .",
|
|
119
|
-
"test": "vitest run",
|
|
120
|
-
"test:watch": "vitest",
|
|
121
|
-
"test:coverage": "vitest run --coverage",
|
|
122
|
-
"docs": "typedoc",
|
|
123
|
-
"docs:watch": "typedoc --watch",
|
|
124
|
-
"size:pack": "npm pack --dry-run",
|
|
125
|
-
"verify:release": "pnpm typecheck && pnpm lint && pnpm test && pnpm build && pnpm size:pack",
|
|
126
|
-
"example:provider": "pnpm build && node examples/vercel-provider.mjs"
|
|
127
129
|
}
|
|
128
|
-
}
|
|
130
|
+
}
|