forked from wotzebra/livewire-sortablejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 680 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "@nextapps-be/livewire-sortablejs",
"version": "0.2.0",
"description": "Laravel Livewire plugin to use Sortable.js",
"main": "dist/livewire-sortable.js",
"author": "Günther Debrauwer",
"license": "MIT",
"homepage": "https://github.com/nextapps-be/livewire-sortablejs",
"repository": {
"type": "git",
"url": "https://github.com/nextapps-be/livewire-sortablejs"
},
"dependencies": {
"sortablejs": "^1.14.0"
},
"devDependencies": {
"esbuild": "^0.12.20"
},
"scripts": {
"build": "esbuild src/index.js --bundle --minify --sourcemap --outfile=dist/livewire-sortable.js"
}
}