@libredb/studio 0.9.12 → 0.9.19
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/README.md +18 -4
- package/dist/{chunk-VWVRUCQO.mjs → chunk-CPF7XWV5.mjs} +77 -77
- package/dist/chunk-CPF7XWV5.mjs.map +1 -0
- package/dist/{chunk-DZ2UB3C6.mjs → chunk-G3S66G64.mjs} +259 -265
- package/dist/chunk-G3S66G64.mjs.map +1 -0
- package/dist/{chunk-JOGLIOFO.js → chunk-HGPD6PWV.js} +129 -129
- package/dist/chunk-HGPD6PWV.js.map +1 -0
- package/dist/{chunk-RBVDMLFV.js → chunk-Y52UIFEX.js} +259 -265
- package/dist/chunk-Y52UIFEX.js.map +1 -0
- package/dist/components.js +14 -14
- package/dist/components.mjs +2 -2
- package/dist/index.js +14 -14
- package/dist/index.mjs +2 -2
- package/dist/workspace.js +350 -358
- package/dist/workspace.js.map +1 -1
- package/dist/workspace.mjs +220 -228
- package/dist/workspace.mjs.map +1 -1
- package/package.json +10 -5
- package/dist/chunk-DZ2UB3C6.mjs.map +0 -1
- package/dist/chunk-JOGLIOFO.js.map +0 -1
- package/dist/chunk-RBVDMLFV.js.map +0 -1
- package/dist/chunk-VWVRUCQO.mjs.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libredb/studio",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.19",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -71,6 +71,10 @@
|
|
|
71
71
|
"react": "^19",
|
|
72
72
|
"react-dom": "^19"
|
|
73
73
|
},
|
|
74
|
+
"engines": {
|
|
75
|
+
"node": ">=24.16.0"
|
|
76
|
+
},
|
|
77
|
+
"packageManager": "bun@1.3.14",
|
|
74
78
|
"scripts": {
|
|
75
79
|
"dev": "next dev",
|
|
76
80
|
"build": "next build",
|
|
@@ -80,6 +84,7 @@
|
|
|
80
84
|
"lint": "eslint .",
|
|
81
85
|
"typecheck": "tsc --noEmit",
|
|
82
86
|
"test": "bun test tests/unit tests/api tests/integration && bun test tests/hooks && bun run test:components",
|
|
87
|
+
"test:ci": "bash tests/run-core.sh && bun run test:components",
|
|
83
88
|
"test:unit": "bun test tests/unit",
|
|
84
89
|
"test:integration": "bun test tests/integration",
|
|
85
90
|
"test:hooks": "bun test tests/hooks",
|
|
@@ -87,8 +92,8 @@
|
|
|
87
92
|
"test:components": "bash tests/run-components.sh",
|
|
88
93
|
"test:components:coverage": "bash tests/run-components.sh --coverage --coverage-reporter=lcov --coverage-dir=coverage/components",
|
|
89
94
|
"test:e2e": "bunx playwright test",
|
|
90
|
-
"test:coverage:core": "
|
|
91
|
-
"test:coverage": "rm -rf coverage && bun run test:coverage:core && bun run test:components:coverage && node scripts/merge-lcov.mjs coverage/core/lcov.info coverage/
|
|
95
|
+
"test:coverage:core": "bash tests/run-core.sh --coverage --coverage-reporter=lcov --coverage-dir=coverage/core",
|
|
96
|
+
"test:coverage": "rm -rf coverage && bun run test:coverage:core && bun run test:components:coverage && node scripts/merge-lcov.mjs coverage/core/file-*/lcov.info coverage/components/lcov.info coverage/lcov.info",
|
|
92
97
|
"test:coverage-html": "bun run test:coverage && genhtml coverage/lcov.info --output-directory coverage/html && echo '\n Open coverage/html/index.html in your browser'"
|
|
93
98
|
},
|
|
94
99
|
"dependencies": {
|
|
@@ -124,7 +129,7 @@
|
|
|
124
129
|
"@tanstack/react-table": "^8.21.3",
|
|
125
130
|
"@tanstack/react-virtual": "^3.13.13",
|
|
126
131
|
"@xyflow/react": "^12.10.0",
|
|
127
|
-
"better-sqlite3": "^12.
|
|
132
|
+
"better-sqlite3": "^12.10.1",
|
|
128
133
|
"class-variance-authority": "^0.7.1",
|
|
129
134
|
"clsx": "^2.1.1",
|
|
130
135
|
"cmdk": "^1.1.1",
|
|
@@ -169,7 +174,7 @@
|
|
|
169
174
|
"@testing-library/user-event": "^14.6.1",
|
|
170
175
|
"@types/better-sqlite3": "^7.6.13",
|
|
171
176
|
"@types/bun": "latest",
|
|
172
|
-
"@types/node": "^
|
|
177
|
+
"@types/node": "^24",
|
|
173
178
|
"@types/pg": "^8.16.0",
|
|
174
179
|
"@types/react": "^19.2.14",
|
|
175
180
|
"@types/react-dom": "^19.2.3",
|