ci: temp add debugging to ai-sdk workflow (#392)

This commit is contained in:
CodeWithShreyans 2025-08-28 23:04:21 +00:00
parent 8f3b2bed1e
commit b0a0b5d896
No known key found for this signature in database
GPG key ID: A1B43A0A7B74CD2C
3 changed files with 13 additions and 13 deletions

View file

@ -32,9 +32,9 @@ jobs:
run: bun install
- name: Build
run: bun run build
run: bun run build && ls -la
- name: Publish
run: npm publish --provenance --access public
run: npm publish --provenance --access public --dry-run --verbose
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

View file

@ -170,15 +170,15 @@
"name": "@supermemory/openai-sdk",
"version": "1.0.0",
"dependencies": {
"openai": "^4.63.0",
"supermemory": "^3.0.0-alpha.22",
"zod": "^4.0.17",
"openai": "^4.104.0",
"supermemory": "^3.0.0-alpha.26",
"zod": "^4.1.4",
},
"devDependencies": {
"@total-typescript/tsconfig": "^1.0.4",
"@types/bun": "^1.2.20",
"dotenv": "^16.4.7",
"tsdown": "^0.14.1",
"@types/bun": "^1.2.21",
"dotenv": "^16.6.1",
"tsdown": "^0.14.2",
"typescript": "^5.9.2",
"vitest": "^3.2.4",
},

View file

@ -1,7 +1,7 @@
{
"name": "@supermemory/ai-sdk",
"type": "module",
"version": "1.0.5",
"version": "1.0.7",
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
@ -23,11 +23,11 @@
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.mjs",
".": "./dist/index.js",
"./package.json": "./package.json"
},
"repository": {