forked from inokawa/virtua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.57 KB
/
package.json
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
113
114
115
116
117
118
119
120
121
122
123
{
"name": "virtua",
"version": "0.17.5",
"description": "A zero-config, fast and small (~3kB) virtual list (and grid) component for React.",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"default": "./lib/index.js"
}
},
"files": [
"lib"
],
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"tsc": "tsc -p . --noEmit",
"test": "jest --silent",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"storybook": "storybook dev -p 6006",
"storybook:rtl": "STORYBOOK_RTL=1 npm run storybook",
"storybook:build": "storybook build",
"storybook:test": "concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"npm run storybook -- --no-open\" \"wait-on tcp:6006 && test-storybook\"",
"e2e": "npx playwright test",
"typedoc": "typedoc",
"size": "size-limit",
"prepublishOnly": "npm run typedoc && rimraf lib && npm run build"
},
"devDependencies": {
"@babel/plugin-transform-react-pure-annotations": "7.23.3",
"@dnd-kit/core": "6.1.0",
"@dnd-kit/sortable": "8.0.0",
"@emotion/react": "11.10.8",
"@emotion/styled": "11.10.8",
"@faker-js/faker": "8.3.1",
"@mui/material": "5.14.19",
"@playwright/test": "^1.39.0",
"@radix-ui/colors": "3.0.0",
"@radix-ui/react-scroll-area": "1.0.5",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.5",
"@size-limit/preset-small-lib": "^11.0.1",
"@storybook/addon-storysource": "7.6.4",
"@storybook/react": "7.6.4",
"@storybook/react-vite": "^7.6.4",
"@storybook/source-loader": "7.6.4",
"@storybook/test-runner": "0.16.0",
"@tanstack/react-virtual": "3.0.1",
"@testing-library/react": "14.1.2",
"@types/react": "18.2.43",
"@types/react-beautiful-dnd": "13.1.7",
"@types/react-virtualized": "9.21.28",
"@types/react-window": "1.8.8",
"@typescript-eslint/parser": "6.13.2",
"concurrently": "8.2.2",
"eslint": "8.54.0",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"re-resizable": "6.9.11",
"react": "18.2.0",
"react-beautiful-dnd": "13.1.1",
"react-content-loader": "6.2.1",
"react-dom": "18.2.0",
"react-is": "18.2.0",
"react-merge-refs": "2.1.1",
"react-pull-to-refresh": "2.0.1",
"react-select": "5.8.0",
"react-virtualized": "9.22.5",
"react-virtuoso": "4.6.2",
"react-window": "1.8.10",
"rimraf": "5.0.5",
"rollup": "4.7.0",
"rollup-plugin-banner2": "1.2.2",
"size-limit": "^11.0.1",
"storybook": "^7.6.4",
"ts-jest": "29.1.1",
"typedoc": "0.25.3",
"typedoc-plugin-markdown": "3.17.1",
"typescript": "5.3.2",
"virtua": "^0.17.5",
"vite": "5.0.7",
"wait-on": "7.2.0"
},
"peerDependencies": {
"react": ">=16.14.0",
"react-dom": ">=16.14.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inokawa/virtua.git"
},
"keywords": [
"react",
"react-component",
"ui",
"headless",
"list",
"grid",
"table",
"flex",
"scroll",
"scroller",
"scrolling",
"virtual",
"virtualized",
"virtualization",
"infinite",
"windowing"
],
"author": "inokawa <[email protected]> (https://github.com/inokawa/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/inokawa/virtua/issues"
},
"homepage": "https://github.com/inokawa/virtua#readme"
}