-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
53 lines (53 loc) · 1.2 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
{
"name": "@lhlyu/vue-virtual-waterfall",
"description": "vue3 virtual waterfall component",
"version": "1.0.6",
"author": "lhlyu",
"repository": {
"type": "git",
"url": "https://github.com/lhlyu/vue-virtual-waterfall.git"
},
"license": "MIT",
"type": "module",
"scripts": {
"fmt": "prettier --write .",
"dev": "vite --host",
"build": "vue-tsc && vite build",
"build:npm": "vue-tsc && vite build --mode npm",
"preview": "vite preview",
"pub": "bash scripts/publish.sh"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"vue3",
"waterfall",
"virtual-list",
"component"
],
"files": [
"dist",
"README.md",
"README.zh.md",
"LICENSE",
"package.json"
],
"dependencies": {
"@vueuse/core": "^11.0.3"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.3",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.5",
"postcss": "^8.4.44",
"prettier": "^3.3.3",
"prettier-plugin-rational-order": "^1.0.3",
"sass": "^1.78.0",
"typescript": "^5.5.4",
"vite": "^5.4.3",
"vite-plugin-dts": "4.1.0",
"vue": "^3.5.0",
"vue-tsc": "^2.1.4"
}
}