| 1 |
{ |
| 2 |
"version": "6.3.1", |
| 3 |
"name": "simplebar", |
| 4 |
"title": "SimpleBar.js", |
| 5 |
"description": "Scrollbars, simpler.", |
| 6 |
"files": [ |
| 7 |
"dist", |
| 8 |
"src", |
| 9 |
"README.md" |
| 10 |
], |
| 11 |
"author": "Adrien Denat from a fork by Jonathan Nicol", |
| 12 |
"repository": { |
| 13 |
"type": "git", |
| 14 |
"url": "https://github.com/grsmto/simplebar.git", |
| 15 |
"directory": "packages/simplebar" |
| 16 |
}, |
| 17 |
"main": "./dist/index.cjs", |
| 18 |
"module": "./dist/index.mjs", |
| 19 |
"types": "./dist/index.d.ts", |
| 20 |
"unpkg": "./dist/simplebar.min.js", |
| 21 |
"style": "./dist/simplebar.min.css", |
| 22 |
"exports": { |
| 23 |
".": { |
| 24 |
"import": "./dist/index.mjs", |
| 25 |
"require": "./dist/index.cjs" |
| 26 |
}, |
| 27 |
"./dist/simplebar.min.css": "./dist/simplebar.min.css" |
| 28 |
}, |
| 29 |
"homepage": "https://grsmto.github.io/simplebar/", |
| 30 |
"bugs": "https://github.com/grsmto/simplebar/issues", |
| 31 |
"license": "MIT", |
| 32 |
"scripts": { |
| 33 |
"build": "rollup -c && cp ../simplebar-core/src/simplebar.css dist/simplebar.css && minify dist/simplebar.css > dist/simplebar.min.css", |
| 34 |
"dev": "rollup -c -w --environment BUILD:development", |
| 35 |
"test": "jest -c jest-unit.config.js", |
| 36 |
"version": "yarn build", |
| 37 |
"precommit": "lint-staged" |
| 38 |
}, |
| 39 |
"dependencies": { |
| 40 |
"simplebar-core": "^1.3.1" |
| 41 |
}, |
| 42 |
"devDependencies": { |
| 43 |
"@babel/plugin-transform-runtime": "^7.19.6", |
| 44 |
"intern": "^4.4.2", |
| 45 |
"minify": "^3.0.5", |
| 46 |
"promise": "^8.0.2" |
| 47 |
}, |
| 48 |
"lint-staged": { |
| 49 |
"*.{js,jsx,json}": [ |
| 50 |
"prettier-eslint --write", |
| 51 |
"git add" |
| 52 |
] |
| 53 |
}, |
| 54 |
"gitHead": "3885152e72af29662d613dca32f7b76d4120f184" |
| 55 |
} |
| 56 |
|