Files
2023-05-30 09:50:59 +02:00

61 lines
1.7 KiB
JSON

{
"name": "overlayscrollbars",
"private": true,
"version": "2.2.0",
"description": "A scrollbar plugin that hides native scrollbars, provides custom styleable overlay scrollbars and keeps the native functionality and feeling.",
"author": "Rene Haas | KingSora",
"license": "MIT",
"homepage": "https://kingsora.github.io/OverlayScrollbars",
"bugs": "https://github.com/KingSora/OverlayScrollbars/issues",
"repository": {
"type": "git",
"url": "https://github.com/KingSora/OverlayScrollbars.git",
"directory": "packages/overlayscrollbars"
},
"keywords": [
"overlayscrollbars",
"custom",
"styleable",
"scrollbar",
"scrollbars",
"scroll",
"frontend",
"browser"
],
"files": [
"src",
"dist",
"types",
"styles",
"README.md"
],
"main": "src/index.ts",
"module": "src/index.ts",
"types": "src/index.ts",
"exports": {
".": {
"require": "./src/index.ts",
"import": "./src/index.ts",
"types": "./src/index.ts"
},
"./overlayscrollbars.scss": "./src/index.scss"
},
"sideEffects": ["*.css", "*.scss", "*.sass"],
"devDependencies": {
"rollup-plugin-summary": "^1.4.3",
"rollup-plugin-terser": "^7.0.2"
},
"scripts": {
"build": "rollup -c",
"test": "jest --coverage",
"e2e": "playwright test --grep-invert @special",
"e2e:dev": "playwright test --workers 1 --timeout 0 --global-timeout 0",
"jest": "jest --coverage --testPathPattern",
"jest:node": "jest --coverage --selectProjects node --testPathPattern",
"jest:jsdom": "jest --selectProjects jsdom --testPathPattern",
"posttest": "playwright-merge-coverage && full-coverage",
"postjest": "full-coverage",
"poste2e": "playwright-merge-coverage && full-coverage"
}
}