forked from MopTym/vue-waterfall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.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
{
"name": "vue-waterfall3",
"version": "2.0.0-alpha.5",
"description": "A waterfall layout component for Vue.js",
"types": "./dist/lib/index.d.ts",
"module": "./dist/vue-waterfall.mjs",
"exports": {
"./dist/style.css": "./dist/style.css",
".": {
"import": "./dist/vue-waterfall.mjs",
"require": "./dist/vue-waterfall.umd.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yxw007/vue-waterfall.git"
},
"keywords": [
"waterfall",
"vue3",
"layout"
],
"author": "Potter <aa4790139@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yxw007/vue-waterfall/issues"
},
"homepage": "https://github.com/yxw007/vue-waterfall",
"devDependencies": {
"@types/node": "^20.4.9",
"@vitejs/plugin-vue": "^4.2.3",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.1",
"vue": "^3.3.4"
},
"dependencies": {
"@vueuse/core": "^10.3.0"
}
}