You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
3.8 KiB
112 lines
3.8 KiB
{ |
|
"name": "react-window", |
|
"version": "2.3.0", |
|
"type": "module", |
|
"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", |
|
"homepage": "https://react-window.vercel.app/", |
|
"repository": { |
|
"type": "git", |
|
"url": "https://github.com/bvaughn/react-window.git" |
|
}, |
|
"main": "dist/react-window.cjs", |
|
"module": "dist/react-window.js", |
|
"types": "dist/react-window.d.ts", |
|
"files": [ |
|
"dist" |
|
], |
|
"lint-staged": { |
|
"**/*": "prettier --write --ignore-unknown" |
|
}, |
|
"peerDependencies": { |
|
"react": "^18.0.0 || ^19.0.0", |
|
"react-dom": "^18.0.0 || ^19.0.0" |
|
}, |
|
"devDependencies": { |
|
"@csstools/postcss-oklab-function": "^4.0.11", |
|
"@eslint/js": "^9.30.1", |
|
"@headlessui/react": "^2.2.4", |
|
"@headlessui/tailwindcss": "^0.2.2", |
|
"@heroicons/react": "^2.2.0", |
|
"@tailwindcss/vite": "^4.1.11", |
|
"@tailwindplus/elements": "^1.0.5", |
|
"@testing-library/jest-dom": "^6.6.4", |
|
"@testing-library/react": "^16.3.0", |
|
"@testing-library/user-event": "^14.6.1", |
|
"@types/bytes": "^3.1.5", |
|
"@types/markdown-it": "^14.1.2", |
|
"@types/node": "^24.2.0", |
|
"@types/react": "^19.2.3", |
|
"@types/react-dom": "^19.2.3", |
|
"@types/sharp": "^0.32.0", |
|
"@vitejs/plugin-react-swc": "^3.10.2", |
|
"bytes": "^3.1.2", |
|
"clsx": "^2.1.1", |
|
"cross-env": "^10.1.0", |
|
"csstype": "^3.1.3", |
|
"eslint": "^9.30.1", |
|
"eslint-plugin-react-hooks": "^5.2.0", |
|
"eslint-plugin-react-refresh": "^0.4.20", |
|
"globals": "^16.3.0", |
|
"husky": "^9.1.7", |
|
"jsdom": "^26.1.0", |
|
"lint-staged": "^16.1.4", |
|
"markdown-it": "^14.1.0", |
|
"marked": "^16.4.1", |
|
"postcss": "^8.5.6", |
|
"prettier": "3.6.2", |
|
"prettier-plugin-tailwindcss": "^0.7.1", |
|
"react": "^19.2.3", |
|
"react-docgen-typescript": "^2.4.0", |
|
"react-dom": "^19.2.3", |
|
"react-error-boundary": "^6.0.0", |
|
"react-lib-tools": "0.0.53", |
|
"react-router-dom": "^7.6.3", |
|
"rollup-plugin-terser": "^7.0.2", |
|
"rollup-plugin-visualizer": "^6.0.3", |
|
"rollup-preserve-directives": "^1.1.3", |
|
"sharp": "^0.34.5", |
|
"tailwind-merge": "^3.3.1", |
|
"tailwindcss": "^4.1.11", |
|
"ts-blank-space": "^0.6.2", |
|
"ts-node": "^10.9.2", |
|
"tsx": "^4.21.0", |
|
"typescript": "~5.8.3", |
|
"typescript-eslint": "^8.35.1", |
|
"typescript-json-schema": "^0.65.1", |
|
"vite": "^7.0.4", |
|
"vite-plugin-dts": "^4.5.4", |
|
"vite-plugin-svgr": "^4.3.0", |
|
"vitest": "^3.2.4", |
|
"zustand": "^5.0.7" |
|
}, |
|
"scripts": { |
|
"dev": "vite", |
|
"dev:integrations": "pnpm run /^dev:integrations:.*/", |
|
"dev:integrations:next": "pnpm -C integrations/next/ run dev", |
|
"dev:integrations:vike": "pnpm -C integrations/vike/ run dev", |
|
"dev:integrations:vite": "pnpm -C integrations/vite/ run dev", |
|
"build": "pnpm run /^build:.*/", |
|
"build:docs": "cross-env TARGET=docs vite build", |
|
"build:lib": "cross-env TARGET=lib vite build", |
|
"compile": "pnpm run --sequential /^compile:.*/", |
|
"compile:docs": "tsx ./scripts/compile-docs", |
|
"compile:examples": "tsx ./scripts/compile-examples", |
|
"compile:search-index": "tsx ./scripts/compile-search-index", |
|
"compress:og-image": "tsx ./scripts/compress-og-image", |
|
"e2e:install": "pnpm -C integrations/tests exec playwright install --with-deps", |
|
"e2e:test": "pnpm -C integrations/tests run test", |
|
"lint": "eslint .", |
|
"prerelease": "rm -rf dist && pnpm run build:lib", |
|
"prettier": "prettier --write \"**/*.{css,html,js,json,jsx,ts,tsx}\"", |
|
"prettier:ci": "prettier --check \"**/*.{css,html,js,json,jsx,ts,tsx}\"", |
|
"preview": "vite preview", |
|
"test": "vitest", |
|
"test:ci": "vitest run", |
|
"test:debug": "vitest --inspect-brk=127.0.0.1:3000 --no-file-parallelism", |
|
"tsc": "tsc -b" |
|
} |
|
} |