-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.88 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.88 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "fluid-dnd",
"version": "2.6.3",
"description": "An agnostic drag and drop library to sort all kind of lists. With current support for vue, react and svelte",
"type": "module",
"homepage": "https://fluid-dnd.netlify.app",
"repository": {
"type": "git",
"url": "https://github.com/carlosjorger/fluid-dnd.git"
},
"files": [
"dist"
],
"main": "./dist/index.cjs",
"exports": {
"./vue": {
"types": "./dist/vue/index.d.ts",
"import": "./dist/vue/index.mjs",
"require": "./dist/vue/index.cjs"
},
"./svelte": {
"types": "./dist/svelte/index.d.ts",
"import": "./dist/svelte/index.mjs",
"require": "./dist/svelte/index.cjs"
},
"./react": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.mjs",
"require": "./dist/react/index.cjs"
},
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"dev": "cd my-test-examples && vite",
"build": "vite build && tsc",
"preview": "vite preview",
"test": "vitest"
},
"keywords": [
"vue",
"react",
"svelte",
"dnd",
"library",
"drag",
"drop",
"drag&drop",
"drag-n-drop",
"draggable",
"droppable",
"sortable",
"dependency-free",
"fluid-dnd"
],
"author": {
"name": "Carlos Jorge Rodriguez",
"email": "rodriguezcuelloc@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.43.0",
"@types/node": "^20.12.5",
"@types/react": "^18.3.20",
"@types/react-dom": "^19.1.2",
"jsdom": "^24.0.0",
"prettier": "3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"svelte": "^5.0.0",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-dts": "^3.7.0",
"vitest": "^1.2.2",
"vue": ">=3.4.0"
}
}