-
Notifications
You must be signed in to change notification settings - Fork 818
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.79 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "react-window",
"version": "2.2.7",
"type": "module",
"author": "Brian Vaughn <[email protected]> (https://github.com/bvaughn/)",
"contributors": [
"Brian Vaughn <[email protected]> (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"
],
"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"
},
"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.44",
"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"
}
}