-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
{
"name": "vue-handy-scroll",
"version": "3.0.2",
"description": "Handy floating scrollbar component for Vue 3",
"main": "dist/handy-scroll.umd.js",
"module": "dist/handy-scroll.esm.js",
"unpkg": "dist/handy-scroll.umd.js",
"browser": {
"./sfc": "src/handy-scroll.vue"
},
"files": [
"dist",
"src"
],
"scripts": {
"lint": "eslint \"src/**/*.{js,vue}\"",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Amphiluke/vue-handy-scroll.git"
},
"keywords": [
"vue",
"scrollbar",
"component"
],
"author": "Amphiluke",
"license": "MIT",
"bugs": {
"url": "https://github.com/Amphiluke/vue-handy-scroll/issues"
},
"homepage": "https://amphiluke.github.io/vue-handy-scroll/",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@rollup/plugin-buble": "^1.0.3",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@stylistic/eslint-plugin-js": "^2.12.1",
"@vue/compiler-sfc": "^3.5.13",
"eslint": "^9.17.0",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"postcss": "^8.4.49",
"rollup": "^4.29.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-vue": "^6.0.0"
},
"peerDependencies": {
"vue": "^3.4.4"
}
}