react-reorder-list 0.7.0 → 0.7.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.
Files changed (1) hide show
  1. package/package.json +5 -5
package/package.json CHANGED
@@ -1,10 +1,13 @@
1
1
  {
2
2
  "name": "react-reorder-list",
3
- "version": "0.7.0",
3
+ "version": "0.7.2",
4
4
  "description": "A simple react component that facilitates the reordering of JSX/HTML elements through drag-and-drop functionality, allowing for easy position changes.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
+ "scripts": {
9
+ "build": "bun i && tsc"
10
+ },
8
11
  "repository": {
9
12
  "type": "git",
10
13
  "url": "git+https://github.com/SahilAggarwal2004/react-reorder-list.git"
@@ -29,12 +32,9 @@
29
32
  "react": ">=17.0.0"
30
33
  },
31
34
  "devDependencies": {
32
- "@types/react": "^18.2.69"
35
+ "@types/react": "^18.2.79"
33
36
  },
34
37
  "dependencies": {
35
38
  "drag-drop-touch": "^1.3.1"
36
- },
37
- "scripts": {
38
- "build": "pnpm i && tsc"
39
39
  }
40
40
  }