react-resizable-panels 4.0.0-alpha.0 → 4.0.0-alpha.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-resizable-panels",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"author": "Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)",
|
|
6
6
|
"contributors": [
|
|
@@ -20,12 +20,18 @@
|
|
|
20
20
|
],
|
|
21
21
|
"scripts": {
|
|
22
22
|
"dev": "vite",
|
|
23
|
+
"dev:integrations": "pnpm run dev:integrations:next & pnpm run dev:integrations:vike & pnpm run dev:integrations:vite",
|
|
24
|
+
"dev:integrations:next": "pnpm -C integrations/next/ run dev",
|
|
25
|
+
"dev:integrations:vike": "pnpm -C integrations/vike/ run dev",
|
|
26
|
+
"dev:integrations:vite": "pnpm -C integrations/vite/ run dev",
|
|
23
27
|
"build": "pnpm run build:lib && pnpm run build:docs",
|
|
24
28
|
"build:docs": "TARGET=docs vite build",
|
|
25
29
|
"build:lib": "TARGET=lib vite build",
|
|
26
30
|
"compile": "pnpm run compile:code-snippets && pnpm run compile:docs",
|
|
27
31
|
"compile:code-snippets": "node --loader ts-node/esm ./scripts/compile-code-snippets.ts",
|
|
28
32
|
"compile:docs": "node --loader ts-node/esm ./scripts/compile-docs.ts",
|
|
33
|
+
"e2e:install": "pnpm -C integrations/vite/ exec playwright install --with-deps",
|
|
34
|
+
"e2e:test": "pnpm -C integrations/vite/ run test",
|
|
29
35
|
"lint": "eslint .",
|
|
30
36
|
"prerelease": "rm -rf dist && pnpm run build:lib",
|
|
31
37
|
"prettier": "prettier --write \"**/*.{css,html,js,json,jsx,ts,tsx}\"",
|
|
@@ -64,9 +70,10 @@
|
|
|
64
70
|
"@ts-ast-parser/core": "^0.8.0",
|
|
65
71
|
"@types/compression": "^1.8.1",
|
|
66
72
|
"@types/express": "^5.0.5",
|
|
73
|
+
"@types/markdown-it": "^14.1.2",
|
|
67
74
|
"@types/node": "^24.2.0",
|
|
68
75
|
"@types/react": "^19.1.8",
|
|
69
|
-
"@types/react-dom": "^19.
|
|
76
|
+
"@types/react-dom": "^19.2.3",
|
|
70
77
|
"@vitejs/plugin-react-swc": "^3.10.2",
|
|
71
78
|
"clsx": "^2.1.1",
|
|
72
79
|
"compression": "^1.8.1",
|
|
@@ -79,13 +86,14 @@
|
|
|
79
86
|
"husky": "^9.1.7",
|
|
80
87
|
"jsdom": "^26.1.0",
|
|
81
88
|
"lint-staged": "^16.1.4",
|
|
89
|
+
"markdown-it": "^14.1.0",
|
|
82
90
|
"marked": "^16.4.1",
|
|
83
91
|
"postcss": "^8.5.6",
|
|
84
92
|
"prettier": "3.6.2",
|
|
85
93
|
"prettier-plugin-tailwindcss": "^0.7.1",
|
|
86
|
-
"react": "^19.
|
|
94
|
+
"react": "^19.2.3",
|
|
87
95
|
"react-docgen-typescript": "^2.4.0",
|
|
88
|
-
"react-dom": "^19.
|
|
96
|
+
"react-dom": "^19.2.3",
|
|
89
97
|
"react-error-boundary": "^6.0.0",
|
|
90
98
|
"react-router-dom": "^7.6.3",
|
|
91
99
|
"rollup-plugin-terser": "^7.0.2",
|