-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 2.63 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "use-scrollbars",
"version": "0.4.11",
"private": false,
"main": "./dist/lib/index.cjs.js",
"module": "./dist/lib/index.esm.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/lib/index.cjs.js",
"import": "./dist/lib/index.esm.js",
"types": "./dist/types/index.d.ts"
},
"./*": "./*"
},
"scripts": {
"dev": "vite ./play",
"serve": "pnpm dev",
"clean": "rimraf dist",
"build": "pnpm clean && vite build",
"build:watch": "pnpm clean && pnpm check:types && vite build --watch",
"check:types": "vue-tsc --noEmit",
"prepare": "husky install",
"auto:publish": "git checkout dev | git branch -D release | git checkout -b release | git merge dev | npm version patch | pnpm build | pnpm publish | git push --set-upstream origin release | git checkout dev | git merge release | git push origin dev"
},
"dependencies": {
"@vueuse/core": "^10.7.0",
"@vueuse/shared": "^10.7.0",
"vue-demi": "^0.14.6"
},
"devDependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@types/node": "^17.0.45",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-vue": "^2.3.4",
"ant-design-vue": "^4.0.7",
"cross-env": "^7.0.3",
"dayjs": "^1.11.10",
"element-plus": "^2.4.2",
"eslint": "^8.53.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.18.1",
"husky": "^8.0.3",
"less": "^4.2.0",
"lint-staged": "^13.3.0",
"mitt": "^3.0.1",
"nativebird": "^1.2.11",
"overlayscrollbars": "^2.4.4",
"overlayscrollbars-vue": "^0.5.6",
"postcss": "^8.4.31",
"postcss-preset-env": "^8.5.1",
"prettier": "^2.8.8",
"resize-observer-polyfill": "^1.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.9.5",
"vite": "^4.5.0",
"vite-plugin-dts": "^1.7.3",
"vue": "^3.3.8",
"vue-eslint-parser": "^9.3.2",
"vue-tsc": "1.0.9",
"vue3": "npm:vue@^3.3.8",
"vxe-table": "^4.5.13",
"xe-utils": "^3.5.14"
},
"peerDependencies": {
"vue": "^3"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"svelte"
]
}
},
"lint-staged": {
"*.{js,ts,tsx,vue}": [
"eslint --fix"
]
},
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"repository": "https://github.com/Lionad-Morotar/use-scrollbar",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"homepage": "https://github.com/Lionad-Morotar/use-scrollbar",
"author": "Lionad",
"license": "MIT",
"keywords": [
"scrollbar",
"virtual",
"scroll",
"vue3",
"vue",
"hook",
"directive"
]
}