aboutsummaryrefslogtreecommitdiff
path: root/packages/memory-graph/package.json
blob: 198810cd801c257dd425f920b843486ab77c7ab3 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
  "name": "@supermemory/memory-graph",
  "version": "0.1.1",
  "description": "Interactive graph visualization component for Supermemory - visualize and explore your memory connections",
  "type": "module",
  "main": "./dist/memory-graph.cjs",
  "module": "./dist/memory-graph.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/memory-graph.js"
      },
      "require": {
        "types": "./dist/index.d.ts",
        "default": "./dist/memory-graph.cjs"
      }
    },
    "./styles.css": "./dist/memory-graph.css",
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "sideEffects": [
    "**/*.css"
  ],
  "scripts": {
    "dev": "vite build --watch",
    "build": "vite build && tsc --emitDeclarationOnly",
    "check-types": "tsc --noEmit",
    "prepublishOnly": "bun run build"
  },
  "keywords": [
    "supermemory",
    "graph",
    "visualization",
    "memory",
    "interactive",
    "canvas",
    "react",
    "component"
  ],
  "author": "Supermemory",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/supermemoryai/supermemory",
    "directory": "packages/memory-graph"
  },
  "bugs": {
    "url": "https://github.com/supermemoryai/supermemory/issues"
  },
  "homepage": "https://github.com/supermemoryai/supermemory/tree/main/packages/memory-graph#readme",
  "peerDependencies": {
    "react": ">=18.0.0",
    "react-dom": ">=18.0.0"
  },
  "dependencies": {
    "@emotion/is-prop-valid": "^1.4.0",
    "@radix-ui/react-collapsible": "^1.1.12",
    "@radix-ui/react-slot": "^1.2.4",
    "@vanilla-extract/css": "^1.17.4",
    "@vanilla-extract/recipes": "^0.5.7",
    "@vanilla-extract/sprinkles": "^1.6.5",
    "lucide-react": "^0.552.0",
    "motion": "^12.23.24"
  },
  "devDependencies": {
    "@types/react": "^19.2.2",
    "@types/react-dom": "^19.2.2",
    "@vanilla-extract/vite-plugin": "^5.1.1",
    "@vitejs/plugin-react": "^5.1.0",
    "typescript": "^5.9.3",
    "vite": "^7.2.1"
  }
}