-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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": "vue3-smooth-scrollbar",
"repository": {
"type": "git",
"url": "https://github.com/rafalolszewski94/vue3-smooth-scrollbar.git"
},
"license": "MIT",
"version": "1.0.2",
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib --name vue3-smooth-scrollbar src/SmoothScrollbar.vue",
"lint": "vue-cli-service lint",
"release": "release-it"
},
"main": "./dist/vue3-smooth-scrollbar.umd.js",
"browser": {
"./sfc": "src/SmoothScrollbar.vue"
},
"files": [
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js"
],
"dependencies": {
"core-js": "^3.8.3",
"lodash": "^4.17.21",
"smooth-scrollbar": "^8.6.2",
"vue": "^3.0.4"
},
"peerDependencies": {
"smooth-scrollbar": "^8.6.2"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@vue/cli-plugin-babel": "~5.0.0-beta.0",
"@vue/cli-plugin-eslint": "~5.0.0-beta.0",
"@vue/cli-service": "~5.0.0-beta.0",
"@vue/compiler-sfc": "^3.0.4",
"@vue/eslint-config-prettier": "^6.0.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.2.0",
"prettier": "^2.2.1",
"release-it": "^14.6.2",
"vue-loader": "^15.9.7"
}
}