forked from Safort/svelte-dnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 994 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "svelte-dnd",
"version": "0.0.10",
"description": "Drag and Drop library for Svelte",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.mjs",
"scripts": {
"start": "rollup -c -w",
"build": "./node_modules/.bin/cross-env NODE_ENV=production rollup -c",
"postinstall": "npm run build"
},
"author": "Safort",
"license": "ISC",
"keywords": [
"svelte-dnd",
"dnd",
"drag-and-drop",
"drag",
"drop",
"draggable",
"droppable",
"dropzone"
],
"homepage": "https://github.com/Safort/svelte-dnd",
"repository": {
"type": "git",
"url": "https://github.com/Safort/svelte-dnd.git"
},
"dependencies": {
"cross-env": "^6.0.3",
"rollup": "^1.25.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-livereload": "^1.0.4",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-svelte": "^5.1.0",
"svelte": "^3.12.1"
},
"devDependencies": {}
}