-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "react-easy-virtualized",
"version": "0.0.7",
"description": "easy to use react-virtualized package",
"types": "dist/index.d.ts",
"exports": {
"require": "./dist/cjs.js",
"import": "./dist/esm.js"
},
"scripts": {
"build": "rm -rf dist && rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react-virtualized"
],
"author": "Minwoo Kang",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/minuukang/react-easy-virtualized"
},
"dependencies": {
"react-intersection-observer": "^8.32.1",
"react-virtualized": "^9.22.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@types/react": "^17.0.3",
"@types/react-virtualized": "^9.21.11",
"rollup": "^2.44.0",
"rollup-plugin-dts": "^3.0.1",
"rollup-plugin-jsx": "^1.0.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.2.3"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}