@abhinav2203/codeflow-canvas 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +6 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abhinav2203/codeflow-canvas",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "private": false,
5
5
  "description": "React Flow graph canvas with Monaco code editors and IDE layout components",
6
6
  "type": "module",
@@ -17,9 +17,6 @@
17
17
  "./heatmap": { "types": "./dist/heatmap/index.d.ts", "default": "./dist/heatmap/index.js" },
18
18
  "./store": { "types": "./dist/store/index.d.ts", "default": "./dist/store/index.js" }
19
19
  },
20
- "bin": {
21
- "codeflow-canvas": "./dist/bin/cli.js"
22
- },
23
20
  "scripts": {
24
21
  "check": "tsc --noEmit",
25
22
  "test": "vitest run",
@@ -28,11 +25,10 @@
28
25
  },
29
26
  "dependencies": {
30
27
  "@abhinav2203/codeflow-core": "^1.1.6",
28
+ "@abhinav2203/coderag": "workspace:*",
31
29
  "@xyflow/react": "^12.0.0",
32
30
  "@monaco-editor/react": "^4.0.0",
33
31
  "monaco-editor": "^0.52.0",
34
- "react": "^18.0.0",
35
- "react-dom": "^18.0.0",
36
32
  "react-rnd": "^10.5.3",
37
33
  "zustand": "^5.0.0",
38
34
  "dotenv": "^16.0.0"
@@ -41,12 +37,14 @@
41
37
  "@types/node": "^22.0.0",
42
38
  "@types/react": "^18.0.0",
43
39
  "next": "^16.0.0",
40
+ "react": "^18.0.0",
41
+ "react-dom": "^18.0.0",
44
42
  "typescript": "^5.7.0",
45
43
  "vitest": "^3.0.0"
46
44
  },
47
45
  "peerDependencies": {
48
46
  "next": "^16.0.0",
49
- "react": "^18.0.0",
50
- "react-dom": "^18.0.0"
47
+ "react": "^18 || ^19",
48
+ "react-dom": "^18 || ^19"
51
49
  }
52
50
  }