forked from Amphiluke/handy-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.45 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
{
"name": "handy-scroll",
"version": "1.1.1",
"description": "Handy dependency-free floating scrollbar widget",
"main": "./dist/handy-scroll.min.js",
"module": "./src/handy-scroll.js",
"style": "./dist/handy-scroll.css",
"types": "./dist/handy-scroll.d.ts",
"exports": {
".": {
"types": "./dist/handy-scroll.d.ts",
"import": "./src/handy-scroll.js",
"require": "./dist/handy-scroll.js"
},
"./dist/*.css": {
"import": "./dist/*.css",
"require": "./dist/*.css"
}
},
"type": "module",
"files": [
"dist",
"src"
],
"scripts": {
"prepare": "husky install",
"lint": "eslint src/*.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c && lessc src/handy-scroll.less | cleancss -O2 -o dist/handy-scroll.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Amphiluke/handy-scroll.git"
},
"keywords": [
"scrollbar",
"widget",
"user-interface"
],
"author": "Amphiluke",
"license": "MIT",
"bugs": {
"url": "https://github.com/Amphiluke/handy-scroll/issues"
},
"homepage": "https://amphiluke.github.io/handy-scroll/",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-terser": "^0.3.0",
"clean-css-cli": "^5.6.1",
"eslint": "^8.32.0",
"husky": "8.0.3",
"less": "^4.1.3",
"rollup": "^3.10.0"
}
}