All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
96 lines
2.8 KiB
JSON
96 lines
2.8 KiB
JSON
{
|
|
"name": "react-virtualized-auto-sizer",
|
|
"version": "1.0.24",
|
|
"description": "Standalone version of the AutoSizer component from react-virtualized",
|
|
"author": "Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)",
|
|
"contributors": [
|
|
"Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/bvaughn/react-virtualized-auto-sizer.git"
|
|
},
|
|
"keywords": [
|
|
"react",
|
|
"reactjs",
|
|
"virtual",
|
|
"window",
|
|
"windowed",
|
|
"list",
|
|
"scrolling",
|
|
"infinite",
|
|
"virtualized",
|
|
"table",
|
|
"grid",
|
|
"spreadsheet"
|
|
],
|
|
"main": "dist/react-virtualized-auto-sizer.cjs.js",
|
|
"module": "dist/react-virtualized-auto-sizer.esm.js",
|
|
"exports": {
|
|
".": {
|
|
"types": {
|
|
"import": "./dist/react-virtualized-auto-sizer.cjs.mjs",
|
|
"default": "./dist/react-virtualized-auto-sizer.cjs.js"
|
|
},
|
|
"module": "./dist/react-virtualized-auto-sizer.esm.js",
|
|
"import": "./dist/react-virtualized-auto-sizer.cjs.mjs",
|
|
"default": "./dist/react-virtualized-auto-sizer.cjs.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"types": "dist/react-virtualized-auto-sizer.cjs.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"clear": "npm run clear:builds & npm run clear:node_modules",
|
|
"clear:builds": "rm -rf ./dist",
|
|
"clear:node_modules": "rm -rf ./node_modules",
|
|
"prerelease": "preconstruct build",
|
|
"prettier": "prettier --write \"**/*.{css,html,js,json,jsx,ts,tsx}\"",
|
|
"prettier:ci": "prettier --check \"**/*.{css,html,js,json,jsx,ts,tsx}\"",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"typescript": "tsc --noEmit",
|
|
"typescript:watch": "tsc --noEmit --watch"
|
|
},
|
|
"lint-staged": {
|
|
"{example,src}/**/*.{js,json,css}": [
|
|
"prettier --write",
|
|
"git add"
|
|
],
|
|
"**/*.js": "eslint --max-warnings 0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.21.4",
|
|
"@babel/helper-create-class-features-plugin": "^7.21.4",
|
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
|
|
"@babel/preset-typescript": "^7.21.5",
|
|
"@preconstruct/cli": "^2.8.1",
|
|
"@types/jest": "^26.0.15",
|
|
"@types/react": "^18",
|
|
"@types/react-dom": "^18",
|
|
"jest": "^29.5.0",
|
|
"jest-environment-jsdom": "^29.5.0",
|
|
"prettier": "^2.8.6",
|
|
"react": "^18",
|
|
"react-dom": "^18",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "^4.1.2"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0",
|
|
"react-dom": "^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0"
|
|
},
|
|
"preconstruct": {
|
|
"exports": {
|
|
"importConditionDefaultExport": "default"
|
|
},
|
|
"___experimentalFlags_WILL_CHANGE_IN_PATCH": {
|
|
"importsConditions": true
|
|
}
|
|
}
|
|
}
|