mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-17 03:56:18 +00:00
63 lines
1.6 KiB
JSON
63 lines
1.6 KiB
JSON
{
|
|
"name": "@supermemory/memory-graph",
|
|
"version": "0.2.0",
|
|
"description": "Interactive graph visualization component for Supermemory - visualize and explore your memory connections",
|
|
"type": "module",
|
|
"main": "./src/index.tsx",
|
|
"module": "./src/index.tsx",
|
|
"types": "./src/index.tsx",
|
|
"exports": {
|
|
".": "./src/index.tsx",
|
|
"./mock-data": "./src/mock-data.ts",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"dev": "vite build --watch",
|
|
"build": "vite build && tsc --emitDeclarationOnly",
|
|
"check-types": "tsc --noEmit",
|
|
"prepack": "bun run build && bun run scripts/swap-exports.ts pack",
|
|
"postpack": "bun run scripts/swap-exports.ts unpack",
|
|
"test": "vitest run"
|
|
},
|
|
"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": {
|
|
"d3-force": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/d3-force": "^3.0.10",
|
|
"@types/react": "^19.2.2",
|
|
"@types/react-dom": "^19.2.2",
|
|
"@vitejs/plugin-react": "^5.1.0",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^7.2.1",
|
|
"vitest": "^3.2.4"
|
|
}
|
|
}
|