123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- {
- "name": "react-virtuoso",
- "author": "Petyo Ivanov",
- "sideEffects": false,
- "version": "2.19.1",
- "homepage": "https://virtuoso.dev/",
- "license": "MIT",
- "source": "src/index.tsx",
- "main": "dist/index.js",
- "module": "dist/index.m.js",
- "types": "dist/index.d.ts",
- "keywords": [
- "react",
- "reactjs",
- "virtual",
- "endless",
- "load more",
- "list",
- "scrolling",
- "infinite",
- "virtualized",
- "grid",
- "feed",
- "chat"
- ],
- "files": [
- "dist"
- ],
- "scripts": {
- "start": "microbundle watch --raw --no-sourcemap --strict --no-compress --jsx React.createElement --format=cjs,esm",
- "build": "yarn build:microbundle && yarn build:bundle-dts",
- "build:microbundle": "microbundle --strict --jsx React.createElement --format=cjs,esm src/index.tsx",
- "build:bundle-dts": "api-extractor run --local && ./scripts/cleanup-dist.sh",
- "test": "jest --passWithNoTests",
- "e2e": "playwright test",
- "lint": "eslint src test e2e --ext .ts,.tsx",
- "typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
- "browse-examples": "node examples/generate-examples.mjs && parcel examples/__examples.html",
- "prepare": "yarn build && husky install",
- "semantic-release": "semantic-release"
- },
- "dependencies": {
- "@virtuoso.dev/react-urx": "^0.2.12",
- "@virtuoso.dev/urx": "^0.2.12"
- },
- "peerDependencies": {
- "react": ">=16 || >=17 || >= 18",
- "react-dom": ">=16 || >=17 || >= 18"
- },
- "devDependencies": {
- "@commitlint/cli": "^12.1.4",
- "@commitlint/config-conventional": "^12.1.4",
- "@emotion/core": "^10.1.0",
- "@emotion/styled": "^10.0.27",
- "@microsoft/api-extractor": "^7.25.0",
- "@playwright/test": "^1.22.2",
- "@testing-library/react": "^13.4.0",
- "@types/faker": "^5.1.4",
- "@types/jest": "^26.0.20",
- "@types/jsdom": "^16.2.3",
- "@types/lodash": "^4.14.165",
- "@types/parcel-bundler": "^1.12.1",
- "@types/react": "^18.0.5",
- "@types/react-beautiful-dnd": "^13.0.0",
- "@types/react-dom": "^18.0.1",
- "@types/react-router-dom": "^5.1.7",
- "@types/react-table": "^7.7.10",
- "@types/react-test-renderer": "^16.9.3",
- "@typescript-eslint/eslint-plugin": "^5.28.0",
- "@typescript-eslint/parser": "^5.28.0",
- "babel-eslint": "^10.0.0",
- "eslint": "^7.5.0",
- "eslint-config-prettier": "^7.2.0",
- "eslint-config-react-app": "^6.0.0",
- "eslint-plugin-flowtype": "^5.2.0",
- "eslint-plugin-html": "^6.0.2",
- "eslint-plugin-import": "^2.22.0",
- "eslint-plugin-json": "^2.1.1",
- "eslint-plugin-jsx-a11y": "^6.3.1",
- "eslint-plugin-prettier": "^3.3.1",
- "eslint-plugin-react": "^7.20.3",
- "eslint-plugin-react-hooks": "^4.0.8",
- "faker": "^5.1.0",
- "husky": "^6.0.0",
- "jest": "^26.6.3",
- "jsdom": "^16.4.0",
- "lodash": "^4.17.21",
- "microbundle": "^0.13.0",
- "parcel": "^1.12.4",
- "parcel-bundler": "^1.12.4",
- "playwright": "^1.22.2",
- "playwright-chromium": "^1.22.2",
- "prettier": "^2.2.1",
- "react": "^18.0.0",
- "react-beautiful-dnd": "^13.0.0",
- "react-dom": "^18.0.0",
- "react-router-dom": "^5.2.0",
- "react-table": "^7.7.0",
- "react-test-renderer": "^16.13.1",
- "rollup-plugin-dts": "^4.2.0",
- "semantic-release": "^17.3.0",
- "ts-jest": "^26.5.1",
- "tslib": "^2.0.0",
- "typescript": "^4.4.2"
- },
- "resolutions": {
- "@types/react": "^16.14.2"
- },
- "engines": {
- "node": ">=10"
- },
- "prettier": {
- "printWidth": 140,
- "semi": false,
- "singleQuote": true,
- "trailingComma": "es5"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/petyosi/react-virtuoso.git"
- }
- }
|