@blorkfield/blork-tabs 0.2.5 → 0.2.6
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 +6 -4
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blorkfield/blork-tabs",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "A framework-agnostic tab/panel management system with snapping and docking",
|
|
5
|
+
"packageManager": "pnpm@10.28.2",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "dist/index.cjs",
|
|
7
8
|
"module": "dist/index.js",
|
|
@@ -21,12 +22,13 @@
|
|
|
21
22
|
"scripts": {
|
|
22
23
|
"build": "tsup src/index.ts --format cjs,esm --dts --clean && cp styles.css dist/",
|
|
23
24
|
"build:watch": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
24
|
-
"dev": "
|
|
25
|
-
"dev:install": "
|
|
25
|
+
"dev": "pnpm build && pnpm -C testbed dev",
|
|
26
|
+
"dev:install": "pnpm -C testbed install",
|
|
26
27
|
"lint": "eslint src/",
|
|
27
28
|
"test": "vitest run",
|
|
28
29
|
"test:watch": "vitest",
|
|
29
|
-
"
|
|
30
|
+
"typecheck": "tsc --noEmit",
|
|
31
|
+
"prepublishOnly": "pnpm build"
|
|
30
32
|
},
|
|
31
33
|
"keywords": [
|
|
32
34
|
"tabs",
|