@dnd-block-tree/vanilla 2.1.0 → 2.2.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/README.md +2 -2
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -7,10 +7,10 @@ Vanilla JS/TS adapter for [dnd-block-tree](https://github.com/thesandybridge/dnd
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install @dnd-block-tree/vanilla
|
|
10
|
+
npm install @dnd-block-tree/core @dnd-block-tree/vanilla
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Requires **@dnd-block-tree/core 2+**. No framework peer dependencies.
|
|
14
14
|
|
|
15
15
|
## What's Included
|
|
16
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dnd-block-tree/vanilla",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Vanilla JS/TS adapter for dnd-block-tree — zero framework dependencies",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -24,10 +24,11 @@
|
|
|
24
24
|
"test": "vitest run",
|
|
25
25
|
"typecheck": "tsc --noEmit"
|
|
26
26
|
},
|
|
27
|
-
"
|
|
27
|
+
"peerDependencies": {
|
|
28
28
|
"@dnd-block-tree/core": "^2.0.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
+
"@dnd-block-tree/core": "^2.0.0",
|
|
31
32
|
"jsdom": "^25.0.0",
|
|
32
33
|
"tsup": "^8.0.0",
|
|
33
34
|
"typescript": "^5.5.0",
|