@dschz/solid-flow 0.2.4 → 0.3.0-next.1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dschz/solid-flow",
3
- "version": "0.2.4",
3
+ "version": "0.3.0-next.1",
4
4
  "description": "Solid Flow - A highly customizable Solid library for building node-based editors, workflow systems, diagrams and more.",
5
5
  "keywords": [
6
6
  "ai workflows",
@@ -43,15 +43,15 @@
43
43
  "author": "Daniel Sanchez <dsanc89@icloud.com>",
44
44
  "repository": {
45
45
  "type": "git",
46
- "url": "https://github.com/dsnchz/solid-flow.git"
46
+ "url": "git+https://github.com/dsnchz/solid-flow.git"
47
47
  },
48
48
  "files": [
49
49
  "dist"
50
50
  ],
51
51
  "type": "module",
52
+ "sideEffects": false,
52
53
  "main": "./dist/index/index.js",
53
54
  "module": "./dist/index/index.js",
54
- "browser": {},
55
55
  "types": "./dist/index/index.d.ts",
56
56
  "typesVersions": {
57
57
  "*": {
@@ -62,11 +62,9 @@
62
62
  },
63
63
  "exports": {
64
64
  ".": {
65
+ "types": "./dist/index/index.d.ts",
65
66
  "solid": "./dist/index/index.jsx",
66
- "import": {
67
- "types": "./dist/index/index.d.ts",
68
- "default": "./dist/index/index.js"
69
- }
67
+ "default": "./dist/index/index.js"
70
68
  },
71
69
  "./styles": "./dist/styles/index.css",
72
70
  "./dist/style.css": "./dist/styles/index.css"
@@ -93,17 +91,17 @@
93
91
  "test:ssr": "vitest run --config vite.config.ssr.ts"
94
92
  },
95
93
  "dependencies": {
96
- "@solid-primitives/map": "^0.7.4",
97
- "@solid-primitives/media": "^2.3.6",
98
- "@solid-primitives/resize-observer": "^2.2.0",
99
- "@xyflow/system": "^0.0.80",
100
- "clsx": "^2.1.1"
94
+ "@solid-primitives/event-listener": "3.0.0-next.3",
95
+ "@solid-primitives/media": "4.0.0-next.2",
96
+ "@solidjs/web": "2.0.0-rc.1",
97
+ "@xyflow/system": "^0.0.80"
101
98
  },
102
99
  "devDependencies": {
103
100
  "@changesets/cli": "2.31.1",
104
101
  "@dagrejs/dagre": "^1.1.5",
105
- "@solidjs/router": "0.16.2",
106
- "@solidjs/testing-library": "0.8.10",
102
+ "@dom-expressions/compiler": "0.50.0-next.43",
103
+ "@solidjs/testing-library": "1.0.0-beta.2",
104
+ "@solidjs/vite-plugin": "3.0.0-next.28",
107
105
  "@testing-library/jest-dom": "7.0.0",
108
106
  "@types/bun": "1.3.14",
109
107
  "@typescript-eslint/eslint-plugin": "8.65.0",
@@ -119,15 +117,11 @@
119
117
  "tsdown": "0.22.14",
120
118
  "typescript": "6.0.3",
121
119
  "typescript-eslint": "8.65.0",
122
- "unplugin-solid": "2.0.0",
123
120
  "vite": "8.1.5",
124
- "vite-plugin-solid": "2.11.13",
125
121
  "vitest": "4.1.10"
126
122
  },
127
123
  "peerDependencies": {
128
- "solid-js": ">=1.8.0"
129
- },
130
- "overrides": {
131
- "babel-preset-solid": "1.9.6"
124
+ "@solidjs/web": "^2.0.0-rc.0",
125
+ "solid-js": "^2.0.0-rc.0"
132
126
  }
133
127
  }