aboutsummaryrefslogtreecommitdiff
path: root/packages/memory-graph-playground/package.json
diff options
context:
space:
mode:
authornexxeln <[email protected]>2025-11-19 18:57:55 +0000
committernexxeln <[email protected]>2025-11-19 18:57:56 +0000
commit5e24eb66c3ca7d2224d0d1f7837cda17015f5fcb (patch)
tree60336fd37b41e3597065729d098877483eba73b6 /packages/memory-graph-playground/package.json
parentFix: Prevent multiple prompts while AI response is generated (fixes #538) (#583) (diff)
downloadarchived-supermemory-shoubhit/eng-358-packaging-graph-component.tar.xz
archived-supermemory-shoubhit/eng-358-packaging-graph-component.zip
includes: - a package that contains a MemoryGraph component which handles fetching data and rendering the graph - a playground to test the package problems: - the bundle size is huge - the styles are kinda broken? we are using [https://www.npmjs.com/package/vite-plugin-libgi-inject-css](https://www.npmjs.com/package/vite-plugin-lib-inject-css) to inject the styles ![image.png](https://app.graphite.com/user-attachments/assets/cb1822c5-850a-45a2-9bfa-72b73436659f.png)
Diffstat (limited to 'packages/memory-graph-playground/package.json')
-rw-r--r--packages/memory-graph-playground/package.json31
1 files changed, 31 insertions, 0 deletions
diff --git a/packages/memory-graph-playground/package.json b/packages/memory-graph-playground/package.json
new file mode 100644
index 00000000..203b066d
--- /dev/null
+++ b/packages/memory-graph-playground/package.json
@@ -0,0 +1,31 @@
+{
+ "name": "memory-graph-playground",
+ "private": true,
+ "version": "0.0.0",
+ "type": "module",
+ "scripts": {
+ "dev": "vite",
+ "build": "tsc -b && vite build",
+ "lint": "eslint .",
+ "preview": "vite preview"
+ },
+ "dependencies": {
+ "@supermemory/memory-graph": "workspace:*",
+ "react": "^19.1.1",
+ "react-dom": "^19.1.1"
+ },
+ "devDependencies": {
+ "@eslint/js": "^9.36.0",
+ "@types/node": "^24.6.0",
+ "@types/react": "^19.1.16",
+ "@types/react-dom": "^19.1.9",
+ "@vitejs/plugin-react": "^5.0.4",
+ "eslint": "^9.36.0",
+ "eslint-plugin-react-hooks": "^5.2.0",
+ "eslint-plugin-react-refresh": "^0.4.22",
+ "globals": "^16.4.0",
+ "typescript": "~5.9.3",
+ "typescript-eslint": "^8.45.0",
+ "vite": "^7.1.7"
+ }
+}