-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1020 Bytes
/
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
{
"name": "gear-scrollbar",
"version": "1.0.0",
"description": "gear styled scrollbar",
"main": "dist/gearscroll.js",
"module": "dist/gearscroll.min.js",
"typings": "dist/gearscroll.d.ts",
"repository": "https://github.com/abhishekkhandait/gear-scrollbar.git",
"author": "Abhishek Khandait <khandaitabhishek@gmail.com>",
"license": "MIT",
"scripts": {
"build": "rollup -c --watch",
"build:prod": "NODE_ENV=production rollup -c && yarn generate-types",
"generate-types": "npx typescript src/gearscroll.ts --declaration --allowJs --emitDeclarationOnly --outDir dist"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.0",
"rollup": "^2.34.1",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.0",
"tslib": "^2.0.1",
"typescript": "^4.1.5"
},
"dependencies": {
"@types/react": "^17.0.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"resize-observer-polyfill": "^1.5.1"
}
}