-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.38 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.38 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
{
"name": "chelsea-dragger",
"version": "0.0.5",
"type": "module",
"files": [
"dist"
],
"main": "./dist/chelsea-dragger.umd.cjs",
"module": "./dist/chelsea-dragger.js",
"exports": {
".": {
"require": "./dist/chelsea-dragger.umd.cjs",
"import": "./dist/chelsea-dragger.js"
},
"./style": "./dist/style.css"
},
"dependencies": {
"vue": "^3.3.4"
},
"devDependencies": {
"@playwright/test": "^1.39.0",
"@vitejs/plugin-vue": "^4.4.0",
"sass": "^1.69.5",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vue-tsc": "^1.8.5"
},
"scripts": {
"dev": "vite ./example -c vite.config.ts --open",
"build": "vue-tsc && vite build",
"test": "playwright install && playwright test",
"test:watch": "PWTEST_WATCH=1 playwright test",
"test:ui": "playwright test --ui",
"test:gen": "playwright codegen"
},
"homepage": "https://github.com/justanothermoses/chelsea-dragger",
"bugs": {
"url": "https://github.com/justanothermoses/chelsea-dragger/issues"
},
"author": {
"name": "Moses Otten",
"url": "https://github.com/justanothermoses"
},
"description": "Vue plugin to implement drag and drop",
"keywords": [
"vue",
"plugin",
"drag-and-drop",
"drag",
"drop",
"vue-plugin",
"vue-use",
"vue-directive",
"vue-component",
"vuejs",
"vue-js",
"component"
]
}