-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
79 lines (79 loc) · 2.31 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@coleqiu/vue-drag-select",
"version": "2.0.6-beta.1",
"description": "Drag select component for Vue3",
"keywords": [
"vue",
"vue3",
"drag",
"select",
"drag select"
],
"files": [
"src",
"dist"
],
"main": "./dist/vue-drag-select.umd.js",
"types": "./dist/index.d.ts",
"module": "./dist/vue-drag-select.es.js",
"homepage": "https://github.com/credred/vue-drag-select#readme",
"license": "MIT",
"scripts": {
"dev": "vite",
"test": "karma start --singleRun --reporters spec,coverage",
"test:dev": "karma start",
"lint": "eslint . --ext .js,.ts,.tsx,.vue",
"build-typings": "vue-tsc --declaration --emitDeclarationOnly --outDir dist",
"build": "vite build && yarn build-typings",
"serve": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@storybook/addon-actions": "^7.6.8",
"@storybook/addon-essentials": "^7.6.8",
"@storybook/addon-links": "^7.6.8",
"@storybook/vue3": "^7.6.8",
"@storybook/vue3-vite": "^7.6.8",
"@testing-library/dom": "^8.20.1",
"@testing-library/user-event": "^14.5.2",
"@testing-library/vue": "^6.6.1",
"@types/jasmine": "^4.6.4",
"@types/karma": "^6.3.8",
"@types/node": "^20.11.3",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-vue": "^4.6.2",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"babel-loader": "^8.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-define-config": "^1.24.1",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^8.7.1",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "^5.1.0",
"karma-spec-reporter": "^0.0.34",
"karma-vite": "^1.0.5",
"prettier": "^2.8.8",
"puppeteer": "^13.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.69.7",
"storybook": "^7.6.8",
"typescript": "^5.3.3",
"vite": "^4.5.1",
"vue": "^3.4.14",
"vue-eslint-parser": "^8.3.0",
"vue-loader": "^17.4.2",
"vue-tsc": "^1.8.27"
}
}