-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 974 Bytes
/
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
{
"name": "vue3-auto-scroll",
"private": false,
"version": "1.0.13",
"type": "module",
"main": "./dist/lib.umd.cjs",
"module": "./dist/lib.js",
"types": "./dist/packages/vue3-auto-scroll/index.d.ts",
"keywords": [
"vue3",
"typescript",
"auto-scroll"
],
"description": "a auth scroll component with vue3, support typescript",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "https://github.com/ashuicoder/vue3-auto-scroll"
},
"dependencies": {
"element-resize-detector": "^1.2.4",
"vue": "^3.2.37",
"vue3-auto-scroll": "^1.0.13"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.1.0",
"sass": "^1.55.0",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vite-plugin-dts": "^1.6.6",
"vue-tsc": "^0.40.4"
},
"files": [
"package.json",
"README.md",
"LICENSE",
"dist"
]
}