-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.07 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
{
"name": "vue-smooth-scrollbar-ts",
"public": true,
"author": "sayid.ibragimov",
"license": "MIT",
"version": "1.0.1",
"type": "module",
"files": [
"dist",
"lib",
"LICENSE",
"README.md",
"package.json"
],
"main": "./dist/vue-smooth-scrollbar-ts.umd.cjs",
"module": "./dist/vue-smooth-scrollbar-ts.js",
"types": "./dist/vue-smooth-scrollbar-ts.d.ts",
"exports": {
".": {
"import": "./dist/vue-smooth-scrollbar-ts.js",
"require": "./dist/vue-smooth-scrollbar-ts.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build && npm run types && npm run rename-types",
"postbuild": "rimraf dist/demo.webp dist/vite.svg",
"preview": "vite preview",
"types": "vue-tsc lib/main.ts --declaration --allowJs --checkJs --emitDeclarationOnly --skipLibCheck --rootDir . --outFile dist/vue-smooth-scrollbar-ts.d.ts",
"rename-types": "node scripts/rename-module.js",
"npm:publish": "npm publish --provenance --access public",
"github:package": "node scripts/rewrite-package.js",
"github:publish": "npm publish --scope=@siibragimov --registry=https://npm.pkg.github.com/ --provenance --access public"
},
"dependencies": {
"smooth-scrollbar": "^8.8.4",
"vue": "^3.4.29"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@vitejs/plugin-vue": "^5.0.5",
"rimraf": "^6.0.1",
"typescript": "^5.2.2",
"vite": "^5.3.1",
"vue-tsc": "^2.0.21"
},
"repository": {
"type": "git",
"url": "git+https://github.com/siibragimov/vue-smooth-scrollbar-ts.git"
},
"homepage": "https://github.com/siibragimov/vue-smooth-scrollbar-ts#readme",
"bugs": {
"url": "https://github.com/siibragimov/vue-smooth-scrollbar-ts/issues"
},
"keywords": [
"vue",
"vue3",
"nuxt3",
"typescript",
"smooth-scrollbar",
"smooth-scrolling",
"custom-scrollbar",
"scrollbar",
"scroll",
"scroll-style",
"scrollbar-style",
"smoothscroll",
"mac-scroll",
"macos-scroll",
"mac",
"macos"
]
}