-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.03 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
55
56
57
58
59
60
61
62
{
"name": "svelte-sortable-flat-list-view",
"version": "1.0.0",
"description": "a sortable view for flat lists",
"type": "module",
"browser": "./dist/svelte-sortable-flat-list-view.js",
"module": "./dist/svelte-sortable-flat-list-view.esm.js",
"svelte": "./dist/svelte-sortable-flat-list-view.svelte",
"types": "./dist/svelte-sortable-flat-list-view.d.ts",
"exports": {
".": {
"require": "./dist/svelte-sortable-flat-list-view.js",
"import": "./dist/svelte-sortable-flat-list-view.esm.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "rimraf dist && rollup -c rollup.config.js && rollup -c rollup-bundling.config.js && tsc && mv src/*.d.ts dist/svelte-sortable-flat-list-view.d.ts && rm src/*.js*",
"agadoo": "agadoo",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rozek/svelte-sortable-flat-list-view.git"
},
"keywords": [
"svelte",
"svelte3",
"svelte-v3",
"sortable",
"list-view"
],
"author": "Andreas Rozek <a.rozek@gmx.de> (https://www.rozek.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rozek/svelte-sortable-flat-list-view/issues"
},
"homepage": "https://github.com/rozek/svelte-sortable-flat-list-view#readme",
"dependencies": {
"javascript-interface-library": "^0.1.14",
"locally-unique-id-generator": "^0.1.3",
"svelte-coordinate-conversion": "^0.1.9",
"svelte-device-info": "^0.1.14",
"svelte-drag-and-drop-actions": "^0.1.35"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@tsconfig/svelte": "^2.0.1",
"agadoo": "^2.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.52.7",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"save-to-file": "^0.1.1",
"svelte": "^3.38.3",
"svelte-preprocess": "^4.7.3",
"typescript": "^4.3.5"
}
}