-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.08 KB
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
{
"name": "handy-scroll",
"version": "2.0.6",
"description": "Handy dependency-free floating scrollbar web component",
"exports": {
".": {
"types": "./dist/handy-scroll.d.mts",
"import": "./dist/handy-scroll.mjs"
}
},
"main": "./dist/handy-scroll.mjs",
"type": "module",
"files": [
"dist",
"src"
],
"scripts": {
"lint": "eslint",
"dev": "vite",
"build": "vite build && terser dist/handy-scroll.mjs -c -m --module -o dist/handy-scroll.mjs",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Amphiluke/handy-scroll.git"
},
"keywords": [
"scrollbar",
"web-component",
"user-interface"
],
"author": "Amphiluke",
"license": "MIT",
"bugs": {
"url": "https://github.com/Amphiluke/handy-scroll/issues"
},
"homepage": "https://amphiluke.github.io/handy-scroll/",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"eslint": "^10.5.0",
"globals": "^17.6.0",
"terser": "^5.48.0",
"vite": "^8.0.16"
}
}