aboutsummaryrefslogtreecommitdiff
path: root/packages/tools/package.json
blob: 2e8550addd8f961fb6342d24218b2b77195872df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
  "name": "@supermemory/tools",
  "type": "module",
  "version": "1.3.13",
  "description": "Memory tools for AI SDK and OpenAI function calling with supermemory",
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "check-types": "tsc --noEmit",
    "test": "vitest --testTimeout 100000",
    "test:watch": "vitest --watch --testTimeout 100000"
  },
  "dependencies": {
    "@ai-sdk/anthropic": "^2.0.25",
    "@ai-sdk/openai": "^2.0.23",
    "@ai-sdk/provider": "^2.0.0",
    "ai": "^5.0.29",
    "openai": "^4.104.0",
    "supermemory": "^3.0.0-alpha.26",
    "zod": "^4.1.5"
  },
  "devDependencies": {
    "@total-typescript/tsconfig": "^1.0.4",
    "@types/bun": "^1.2.21",
    "dotenv": "^16.6.1",
    "tsdown": "^0.14.2",
    "typescript": "^5.9.2",
    "vitest": "^3.2.4",
    "@anthropic-ai/sdk": "^0.65.0"
  },
  "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",
    "./claude-memory": "./dist/claude-memory.js",
    "./openai": "./dist/openai/index.js",
    "./package.json": "./package.json"
  },
  "repository": {
    "url": "https://github.com/supermemoryai/supermemory",
    "directory": "packages/tools"
  },
  "keywords": [
    "ai",
    "sdk",
    "openai",
    "typescript",
    "supermemory",
    "memory",
    "context",
    "tools"
  ],
  "license": "MIT"
}