diff options
| author | CodeWithShreyans <[email protected]> | 2025-08-28 23:04:21 +0000 |
|---|---|---|
| committer | CodeWithShreyans <[email protected]> | 2025-08-28 23:04:21 +0000 |
| commit | b0a0b5d896d02ddfb909e13dcc5a962829831926 (patch) | |
| tree | e8c4e09528e9c0ed2535496f76e2767475479c5e | |
| parent | Merge pull request #384 from supermemoryai/08-24-feat_ui_integrations_page_wi... (diff) | |
| download | supermemory-b0a0b5d896d02ddfb909e13dcc5a962829831926.tar.xz supermemory-b0a0b5d896d02ddfb909e13dcc5a962829831926.zip | |
ci: temp add debugging to ai-sdk workflow (#392)shreyans/08-29-ci_temp_add_debugging_to_ai-sdk_workflow
| -rw-r--r-- | .github/workflows/publish-ai-sdk.yml | 4 | ||||
| -rw-r--r-- | bun.lock | 12 | ||||
| -rw-r--r-- | packages/ai-sdk/package.json | 10 |
3 files changed, 13 insertions, 13 deletions
diff --git a/.github/workflows/publish-ai-sdk.yml b/.github/workflows/publish-ai-sdk.yml index 09d0ba49..4c812839 100644 --- a/.github/workflows/publish-ai-sdk.yml +++ b/.github/workflows/publish-ai-sdk.yml @@ -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 }}
\ No newline at end of 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", }, diff --git a/packages/ai-sdk/package.json b/packages/ai-sdk/package.json index 21d330db..58a49198 100644 --- a/packages/ai-sdk/package.json +++ b/packages/ai-sdk/package.json @@ -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": { |