diff options
| -rw-r--r-- | packages/tools/.npmignore | 5 | ||||
| -rw-r--r-- | packages/tools/package.json | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/packages/tools/.npmignore b/packages/tools/.npmignore index 1e44e42f..6c3f2aaf 100644 --- a/packages/tools/.npmignore +++ b/packages/tools/.npmignore @@ -2,4 +2,7 @@ src/ .turbo/ .env tsdown.config.ts -tsconfig.json
\ No newline at end of file +tsconfig.json +test/ +node_modules/ +*.tsbuildinfo diff --git a/packages/tools/package.json b/packages/tools/package.json index 9aad412f..dd3d3c52 100644 --- a/packages/tools/package.json +++ b/packages/tools/package.json @@ -1,7 +1,7 @@ { "name": "@supermemory/tools", "type": "module", - "version": "1.1.0", + "version": "1.1.12", "description": "Memory tools for AI SDK and OpenAI function calling with supermemory", "scripts": { "build": "tsdown", @@ -30,6 +30,9 @@ "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", + "files": [ + "dist" + ], "exports": { ".": "./dist/index.js", "./ai-sdk": "./dist/ai-sdk.js", |