@depup/react-resizable-panels 4.7.3-depup.0
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/LICENSE.md +21 -0
- package/README.md +25 -0
- package/changes.json +5 -0
- package/dist/react-resizable-panels.cjs +2 -0
- package/dist/react-resizable-panels.cjs.map +1 -0
- package/dist/react-resizable-panels.d.ts +477 -0
- package/dist/react-resizable-panels.js +2104 -0
- package/dist/react-resizable-panels.js.map +1 -0
- package/package.json +141 -0
package/package.json
ADDED
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@depup/react-resizable-panels",
|
|
3
|
+
"version": "4.7.3-depup.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"author": "Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)",
|
|
6
|
+
"contributors": [
|
|
7
|
+
"Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)"
|
|
8
|
+
],
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"homepage": "https://react-resizable-panels.vercel.app/",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/bvaughn/react-resizable-panels.git"
|
|
14
|
+
},
|
|
15
|
+
"main": "dist/react-resizable-panels.cjs",
|
|
16
|
+
"module": "dist/react-resizable-panels.js",
|
|
17
|
+
"types": "dist/react-resizable-panels.d.ts",
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"changes.json",
|
|
21
|
+
"README.md"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"dev": "vite",
|
|
25
|
+
"dev:integrations": "pnpm run /^dev:integrations:.*/",
|
|
26
|
+
"dev:integrations:next": "pnpm -C integrations/next/ run dev",
|
|
27
|
+
"dev:integrations:vike": "pnpm -C integrations/vike/ run dev",
|
|
28
|
+
"dev:integrations:vite": "pnpm -C integrations/vite/ run dev",
|
|
29
|
+
"build": "pnpm run /^build:.*/",
|
|
30
|
+
"build:docs": "cross-env TARGET=docs vite build",
|
|
31
|
+
"build:lib": "cross-env TARGET=lib vite build",
|
|
32
|
+
"compile": "pnpm run --sequential /^compile:.*/",
|
|
33
|
+
"compile:docs": "tsx ./scripts/compile-docs",
|
|
34
|
+
"compile:examples": "tsx ./scripts/compile-examples",
|
|
35
|
+
"compile:search-index": "tsx ./scripts/compile-search-index",
|
|
36
|
+
"compress:og-image": "tsx ./scripts/compress-og-image",
|
|
37
|
+
"e2e:install": "pnpm -C integrations/tests exec playwright install --with-deps",
|
|
38
|
+
"e2e:test": "pnpm -C integrations/tests run test",
|
|
39
|
+
"e2e:test:main": "pnpm -C integrations/tests run test --project=chromium",
|
|
40
|
+
"e2e:test:popup": "pnpm -C integrations/tests run test --project=chromium:popup",
|
|
41
|
+
"lint": "eslint .",
|
|
42
|
+
"prerelease": "rimraf dist && pnpm run build:lib",
|
|
43
|
+
"prettier": "prettier --write \"**/*.{css,html,js,json,jsx,ts,tsx}\"",
|
|
44
|
+
"prettier:ci": "prettier --check \"**/*.{css,html,js,json,jsx,ts,tsx}\"",
|
|
45
|
+
"preview": "vite preview",
|
|
46
|
+
"test": "vitest",
|
|
47
|
+
"test:ci": "vitest run",
|
|
48
|
+
"test:debug": "vitest --inspect-brk=127.0.0.1:3000 --no-file-parallelism",
|
|
49
|
+
"tsc": "tsc -b"
|
|
50
|
+
},
|
|
51
|
+
"lint-staged": {
|
|
52
|
+
"**/*": "prettier --write --ignore-unknown"
|
|
53
|
+
},
|
|
54
|
+
"peerDependencies": {
|
|
55
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
56
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@csstools/postcss-oklab-function": "^4.0.11",
|
|
60
|
+
"@eslint/js": "^9.30.1",
|
|
61
|
+
"@headlessui/react": "^2.2.4",
|
|
62
|
+
"@headlessui/tailwindcss": "^0.2.2",
|
|
63
|
+
"@heroicons/react": "^2.2.0",
|
|
64
|
+
"@tailwindcss/vite": "^4.1.11",
|
|
65
|
+
"@tailwindplus/elements": "^1.0.5",
|
|
66
|
+
"@testing-library/jest-dom": "^6.6.4",
|
|
67
|
+
"@testing-library/react": "^16.3.0",
|
|
68
|
+
"@testing-library/user-event": "^14.6.1",
|
|
69
|
+
"@types/bytes": "^3.1.5",
|
|
70
|
+
"@types/compression": "^1.8.1",
|
|
71
|
+
"@types/express": "^5.0.5",
|
|
72
|
+
"@types/markdown-it": "^14.1.2",
|
|
73
|
+
"@types/node": "^24.2.0",
|
|
74
|
+
"@types/react": "^19.1.8",
|
|
75
|
+
"@types/react-dom": "^19.2.3",
|
|
76
|
+
"@vitejs/plugin-react-swc": "^3.10.2",
|
|
77
|
+
"bytes": "^3.1.2",
|
|
78
|
+
"clsx": "^2.1.1",
|
|
79
|
+
"compression": "^1.8.1",
|
|
80
|
+
"concurrently": "^9.2.1",
|
|
81
|
+
"cross-env": "^10.1.0",
|
|
82
|
+
"csstype": "^3.1.3",
|
|
83
|
+
"eslint": "^9.30.1",
|
|
84
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
85
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
86
|
+
"eslint-plugin-sonarjs": "^3.0.6",
|
|
87
|
+
"express": "^5.1.0",
|
|
88
|
+
"globals": "^16.3.0",
|
|
89
|
+
"husky": "^9.1.7",
|
|
90
|
+
"jsdom": "^26.1.0",
|
|
91
|
+
"lint-staged": "^16.1.4",
|
|
92
|
+
"markdown-it": "^14.1.0",
|
|
93
|
+
"marked": "^16.4.1",
|
|
94
|
+
"postcss": "^8.5.6",
|
|
95
|
+
"prettier": "3.6.2",
|
|
96
|
+
"prettier-plugin-tailwindcss": "^0.7.1",
|
|
97
|
+
"puppeteer": "^24.38.0",
|
|
98
|
+
"react": "^19.2.3",
|
|
99
|
+
"react-docgen-typescript": "^2.4.0",
|
|
100
|
+
"react-dom": "^19.2.3",
|
|
101
|
+
"react-error-boundary": "^6.0.0",
|
|
102
|
+
"react-lib-tools": "^0.0.44",
|
|
103
|
+
"react-router-dom": "^7.6.3",
|
|
104
|
+
"rimraf": "^6.1.2",
|
|
105
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
106
|
+
"rollup-plugin-visualizer": "^6.0.3",
|
|
107
|
+
"rollup-preserve-directives": "^1.1.3",
|
|
108
|
+
"sharp": "^0.34.5",
|
|
109
|
+
"sirv": "^3.0.2",
|
|
110
|
+
"tailwind-merge": "^3.3.1",
|
|
111
|
+
"tailwindcss": "^4.1.11",
|
|
112
|
+
"terser": "^5.43.1",
|
|
113
|
+
"ts-blank-space": "^0.6.2",
|
|
114
|
+
"ts-node": "^10.9.2",
|
|
115
|
+
"tsx": "^4.21.0",
|
|
116
|
+
"typescript": "~5.8.3",
|
|
117
|
+
"typescript-eslint": "^8.35.1",
|
|
118
|
+
"typescript-json-schema": "^0.65.1",
|
|
119
|
+
"vite": "^7.0.4",
|
|
120
|
+
"vite-plugin-dts": "^4.5.4",
|
|
121
|
+
"vite-plugin-svgr": "^4.3.0",
|
|
122
|
+
"vitest": "^3.2.4",
|
|
123
|
+
"vitest-fail-on-console": "^0.10.1",
|
|
124
|
+
"zustand": "^5.0.7"
|
|
125
|
+
},
|
|
126
|
+
"description": "[DepUp] Dependency-bumped version of react-resizable-panels",
|
|
127
|
+
"keywords": [
|
|
128
|
+
"depup",
|
|
129
|
+
"dependency-bumped",
|
|
130
|
+
"updated-deps",
|
|
131
|
+
"react-resizable-panels"
|
|
132
|
+
],
|
|
133
|
+
"depup": {
|
|
134
|
+
"changes": {},
|
|
135
|
+
"depsUpdated": 0,
|
|
136
|
+
"originalPackage": "react-resizable-panels",
|
|
137
|
+
"originalVersion": "4.7.3",
|
|
138
|
+
"processedAt": "2026-03-17T16:38:48.941Z",
|
|
139
|
+
"smokeTest": "failed"
|
|
140
|
+
}
|
|
141
|
+
}
|