-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.74 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "svelte-drag-and-drop-actions",
"version": "1.0.2",
"description": "HTML5 Drag-and-Drop implemented as Svelte actions",
"type": "module",
"main": "./dist/svelte-drag-and-drop-actions.js",
"module": "./dist/svelte-drag-and-drop-actions.esm.js",
"svelte": "./dist/svelte-drag-and-drop-actions.esm.js",
"types": "./dist/svelte-drag-and-drop-actions.d.ts",
"exports": {
".": {
"require": "./dist/svelte-drag-and-drop-actions.js",
"import": "./dist/svelte-drag-and-drop-actions.esm.js",
"svelte": "./dist/svelte-drag-and-drop-actions.esm.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "rimraf dist && rollup -c rollup.config.js && tsc && mv src/*.d.ts dist && rm src/*.js*",
"agadoo": "agadoo",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rozek/svelte-drag-and-drop-actions.git"
},
"keywords": [
"svelte3",
"svelte-action",
"html5-drag"
],
"author": "Andreas Rozek <[email protected]> (https://www.rozek.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rozek/svelte-drag-and-drop-actions/issues"
},
"homepage": "https://github.com/rozek/svelte-drag-and-drop-actions#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"agadoo": "^2.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.52.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.3.4"
},
"dependencies": {
"tslib": "^2.6.2",
"javascript-interface-library": "^0.1.5",
"svelte-coordinate-conversion": "^0.1.6",
"svelte-drag-and-drop-actions": "^0.1.28"
}
}